generated from kevinmichaelchen/hasura-8522
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hasura.sdl.graphqls
1028 lines (839 loc) · 21.3 KB
/
hasura.sdl.graphqls
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
schema {
query: query_root
mutation: mutation_root
subscription: subscription_root
}
"""whether this query should be cached (Hasura Cloud only)"""
directive @cached(
"""measured in seconds"""
ttl: Int! = 60
"""refresh the cache entry"""
refresh: Boolean! = false
) on QUERY
"""
columns and relationships of "address"
"""
type Address {
addressLines(
"""JSON select path"""
path: String
): jsonb
administrativeArea: String
id: uuid!
locality: String
"""An object relationship"""
person: Person
personId: uuid!
postalCode: String
regionCode: String!
sublocality: String
}
"""
aggregated selection of "address"
"""
type AddressAggregate {
aggregate: AddressAggregateFields
nodes: [Address!]!
}
"""
aggregate fields of "address"
"""
type AddressAggregateFields {
count(columns: [AddressSelectColumn!], distinct: Boolean): Int!
max: AddressMaxFields
min: AddressMinFields
}
"""append existing jsonb value of filtered columns with new jsonb value"""
input AddressAppendInput {
addressLines: jsonb
}
"""
Boolean expression to filter rows from the table "address". All fields are combined with a logical 'AND'.
"""
input AddressBoolExp {
_and: [AddressBoolExp!]
_not: AddressBoolExp
_or: [AddressBoolExp!]
addressLines: JsonbComparisonExp
administrativeArea: StringComparisonExp
id: UuidComparisonExp
locality: StringComparisonExp
person: PersonBoolExp
personId: UuidComparisonExp
postalCode: StringComparisonExp
regionCode: StringComparisonExp
sublocality: StringComparisonExp
}
"""
unique or primary key constraints on table "address"
"""
enum AddressConstraint {
"""
unique or primary key constraint on columns "id"
"""
address_pkey
}
"""
delete the field or element with specified path (for JSON arrays, negative integers count from the end)
"""
input AddressDeleteAtPathInput {
addressLines: [String!]
}
"""
delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
"""
input AddressDeleteElemInput {
addressLines: Int
}
"""
delete key/value pair or string element. key/value pairs are matched based on their key value
"""
input AddressDeleteKeyInput {
addressLines: String
}
"""
input type for inserting data into table "address"
"""
input AddressInsertInput {
addressLines: jsonb
administrativeArea: String
id: uuid
locality: String
person: PersonObjRelInsertInput
personId: uuid
postalCode: String
regionCode: String
sublocality: String
}
"""aggregate max on columns"""
type AddressMaxFields {
administrativeArea: String
id: uuid
locality: String
personId: uuid
postalCode: String
regionCode: String
sublocality: String
}
"""aggregate min on columns"""
type AddressMinFields {
administrativeArea: String
id: uuid
locality: String
personId: uuid
postalCode: String
regionCode: String
sublocality: String
}
"""
response of any mutation on the table "address"
"""
type AddressMutationResponse {
"""number of rows affected by the mutation"""
affectedRows: Int!
"""data from the rows affected by the mutation"""
returning: [Address!]!
}
"""
input type for inserting object relation for remote table "address"
"""
input AddressObjRelInsertInput {
data: AddressInsertInput!
"""upsert condition"""
onConflict: AddressOnConflict
}
"""
on_conflict condition type for table "address"
"""
input AddressOnConflict {
constraint: AddressConstraint!
updateColumns: [AddressUpdateColumn!]! = []
where: AddressBoolExp
}
"""Ordering options when selecting data from "address"."""
input AddressOrderBy {
addressLines: OrderBy
administrativeArea: OrderBy
id: OrderBy
locality: OrderBy
person: PersonOrderBy
personId: OrderBy
postalCode: OrderBy
regionCode: OrderBy
sublocality: OrderBy
}
"""primary key columns input for table: address"""
input AddressPkColumnsInput {
id: uuid!
}
"""prepend existing jsonb value of filtered columns with new jsonb value"""
input AddressPrependInput {
addressLines: jsonb
}
"""
select columns of table "address"
"""
enum AddressSelectColumn {
"""column name"""
addressLines
"""column name"""
administrativeArea
"""column name"""
id
"""column name"""
locality
"""column name"""
personId
"""column name"""
postalCode
"""column name"""
regionCode
"""column name"""
sublocality
}
"""
input type for updating data in table "address"
"""
input AddressSetInput {
addressLines: jsonb
administrativeArea: String
id: uuid
locality: String
personId: uuid
postalCode: String
regionCode: String
sublocality: String
}
"""
Streaming cursor of the table "address"
"""
input AddressStreamCursorInput {
"""Stream column input with initial value"""
initialValue: AddressStreamCursorValueInput!
"""cursor ordering"""
ordering: CursorOrdering
}
"""Initial value of the column from where the streaming should start"""
input AddressStreamCursorValueInput {
addressLines: jsonb
administrativeArea: String
id: uuid
locality: String
personId: uuid
postalCode: String
regionCode: String
sublocality: String
}
"""
update columns of table "address"
"""
enum AddressUpdateColumn {
"""column name"""
addressLines
"""column name"""
administrativeArea
"""column name"""
id
"""column name"""
locality
"""column name"""
personId
"""column name"""
postalCode
"""column name"""
regionCode
"""column name"""
sublocality
}
input AddressUpdates {
"""append existing jsonb value of filtered columns with new jsonb value"""
_append: AddressAppendInput
"""
delete the field or element with specified path (for JSON arrays, negative integers count from the end)
"""
_deleteAtPath: AddressDeleteAtPathInput
"""
delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
"""
_deleteElem: AddressDeleteElemInput
"""
delete key/value pair or string element. key/value pairs are matched based on their key value
"""
_deleteKey: AddressDeleteKeyInput
"""prepend existing jsonb value of filtered columns with new jsonb value"""
_prepend: AddressPrependInput
"""sets the columns of the filtered rows to the given values"""
_set: AddressSetInput
"""filter the rows which have to be updated"""
where: AddressBoolExp!
}
"""ordering argument of a cursor"""
enum CursorOrdering {
"""ascending ordering of the cursor"""
ASC
"""descending ordering of the cursor"""
DESC
}
input JsonbCastExp {
String: StringComparisonExp
}
"""
Boolean expression to compare columns of type "jsonb". All fields are combined with logical 'AND'.
"""
input JsonbComparisonExp {
_cast: JsonbCastExp
"""is the column contained in the given json value"""
_containedIn: jsonb
"""does the column contain the given json value at the top level"""
_contains: jsonb
_eq: jsonb
_gt: jsonb
_gte: jsonb
"""does the string exist as a top-level key in the column"""
_hasKey: String
"""do all of these strings exist as top-level keys in the column"""
_hasKeysAll: [String!]
"""do any of these strings exist as top-level keys in the column"""
_hasKeysAny: [String!]
_in: [jsonb!]
_isNull: Boolean
_lt: jsonb
_lte: jsonb
_neq: jsonb
_nin: [jsonb!]
}
"""column ordering options"""
enum OrderBy {
"""in ascending order, nulls last"""
ASC
"""in ascending order, nulls first"""
ASC_NULLS_FIRST
"""in ascending order, nulls last"""
ASC_NULLS_LAST
"""in descending order, nulls first"""
DESC
"""in descending order, nulls first"""
DESC_NULLS_FIRST
"""in descending order, nulls last"""
DESC_NULLS_LAST
}
"""
columns and relationships of "person"
"""
type Person {
"""An object relationship"""
address: Address
id: uuid!
name: String!
validTimeRange: tstzrange!
}
"""
aggregated selection of "person"
"""
type PersonAggregate {
aggregate: PersonAggregateFields
nodes: [Person!]!
}
"""
aggregate fields of "person"
"""
type PersonAggregateFields {
count(columns: [PersonSelectColumn!], distinct: Boolean): Int!
max: PersonMaxFields
min: PersonMinFields
}
"""
Boolean expression to filter rows from the table "person". All fields are combined with a logical 'AND'.
"""
input PersonBoolExp {
_and: [PersonBoolExp!]
_not: PersonBoolExp
_or: [PersonBoolExp!]
address: AddressBoolExp
id: UuidComparisonExp
name: StringComparisonExp
validTimeRange: TstzrangeComparisonExp
}
"""
unique or primary key constraints on table "person"
"""
enum PersonConstraint {
"""
unique or primary key constraint on columns "id"
"""
person_pkey
}
"""
input type for inserting data into table "person"
"""
input PersonInsertInput {
address: AddressObjRelInsertInput
id: uuid
name: String
validTimeRange: tstzrange
}
"""aggregate max on columns"""
type PersonMaxFields {
id: uuid
name: String
}
"""aggregate min on columns"""
type PersonMinFields {
id: uuid
name: String
}
"""
response of any mutation on the table "person"
"""
type PersonMutationResponse {
"""number of rows affected by the mutation"""
affectedRows: Int!
"""data from the rows affected by the mutation"""
returning: [Person!]!
}
"""
input type for inserting object relation for remote table "person"
"""
input PersonObjRelInsertInput {
data: PersonInsertInput!
"""upsert condition"""
onConflict: PersonOnConflict
}
"""
on_conflict condition type for table "person"
"""
input PersonOnConflict {
constraint: PersonConstraint!
updateColumns: [PersonUpdateColumn!]! = []
where: PersonBoolExp
}
"""Ordering options when selecting data from "person"."""
input PersonOrderBy {
address: AddressOrderBy
id: OrderBy
name: OrderBy
validTimeRange: OrderBy
}
"""primary key columns input for table: person"""
input PersonPkColumnsInput {
id: uuid!
}
"""
select columns of table "person"
"""
enum PersonSelectColumn {
"""column name"""
id
"""column name"""
name
"""column name"""
validTimeRange
}
"""
input type for updating data in table "person"
"""
input PersonSetInput {
id: uuid
name: String
validTimeRange: tstzrange
}
"""
Streaming cursor of the table "person"
"""
input PersonStreamCursorInput {
"""Stream column input with initial value"""
initialValue: PersonStreamCursorValueInput!
"""cursor ordering"""
ordering: CursorOrdering
}
"""Initial value of the column from where the streaming should start"""
input PersonStreamCursorValueInput {
id: uuid
name: String
validTimeRange: tstzrange
}
"""
update columns of table "person"
"""
enum PersonUpdateColumn {
"""column name"""
id
"""column name"""
name
"""column name"""
validTimeRange
}
input PersonUpdates {
"""sets the columns of the filtered rows to the given values"""
_set: PersonSetInput
"""filter the rows which have to be updated"""
where: PersonBoolExp!
}
"""
Boolean expression to compare columns of type "String". All fields are combined with logical 'AND'.
"""
input StringComparisonExp {
_eq: String
_gt: String
_gte: String
"""does the column match the given case-insensitive pattern"""
_ilike: String
_in: [String!]
"""
does the column match the given POSIX regular expression, case insensitive
"""
_iregex: String
_isNull: Boolean
"""does the column match the given pattern"""
_like: String
_lt: String
_lte: String
_neq: String
"""does the column NOT match the given case-insensitive pattern"""
_nilike: String
_nin: [String!]
"""
does the column NOT match the given POSIX regular expression, case insensitive
"""
_niregex: String
"""does the column NOT match the given pattern"""
_nlike: String
"""
does the column NOT match the given POSIX regular expression, case sensitive
"""
_nregex: String
"""does the column NOT match the given SQL regular expression"""
_nsimilar: String
"""
does the column match the given POSIX regular expression, case sensitive
"""
_regex: String
"""does the column match the given SQL regular expression"""
_similar: String
}
"""
Boolean expression to compare columns of type "tstzrange". All fields are combined with logical 'AND'.
"""
input TstzrangeComparisonExp {
_eq: tstzrange
_gt: tstzrange
_gte: tstzrange
_in: [tstzrange!]
_isNull: Boolean
_lt: tstzrange
_lte: tstzrange
_neq: tstzrange
_nin: [tstzrange!]
}
"""
Boolean expression to compare columns of type "uuid". All fields are combined with logical 'AND'.
"""
input UuidComparisonExp {
_eq: uuid
_gt: uuid
_gte: uuid
_in: [uuid!]
_isNull: Boolean
_lt: uuid
_lte: uuid
_neq: uuid
_nin: [uuid!]
}
scalar jsonb
"""mutation root"""
type mutation_root {
"""
delete data from the table: "address"
"""
deleteAddress(
"""filter the rows which have to be deleted"""
where: AddressBoolExp!
): AddressMutationResponse
"""
delete single row from the table: "address"
"""
deleteAddressByPk(id: uuid!): Address
"""
delete data from the table: "person"
"""
deletePerson(
"""filter the rows which have to be deleted"""
where: PersonBoolExp!
): PersonMutationResponse
"""
delete single row from the table: "person"
"""
deletePersonByPk(id: uuid!): Person
"""
insert data into the table: "address"
"""
insertAddress(
"""the rows to be inserted"""
objects: [AddressInsertInput!]!
"""upsert condition"""
onConflict: AddressOnConflict
): AddressMutationResponse
"""
insert a single row into the table: "address"
"""
insertAddressOne(
"""the row to be inserted"""
object: AddressInsertInput!
"""upsert condition"""
onConflict: AddressOnConflict
): Address
"""
insert data into the table: "person"
"""
insertPerson(
"""the rows to be inserted"""
objects: [PersonInsertInput!]!
"""upsert condition"""
onConflict: PersonOnConflict
): PersonMutationResponse
"""
insert a single row into the table: "person"
"""
insertPersonOne(
"""the row to be inserted"""
object: PersonInsertInput!
"""upsert condition"""
onConflict: PersonOnConflict
): Person
"""
update data of the table: "address"
"""
updateAddress(
"""append existing jsonb value of filtered columns with new jsonb value"""
_append: AddressAppendInput
"""
delete the field or element with specified path (for JSON arrays, negative integers count from the end)
"""
_deleteAtPath: AddressDeleteAtPathInput
"""
delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
"""
_deleteElem: AddressDeleteElemInput
"""
delete key/value pair or string element. key/value pairs are matched based on their key value
"""
_deleteKey: AddressDeleteKeyInput
"""prepend existing jsonb value of filtered columns with new jsonb value"""
_prepend: AddressPrependInput
"""sets the columns of the filtered rows to the given values"""
_set: AddressSetInput
"""filter the rows which have to be updated"""
where: AddressBoolExp!
): AddressMutationResponse
"""
update single row of the table: "address"
"""
updateAddressByPk(
"""append existing jsonb value of filtered columns with new jsonb value"""
_append: AddressAppendInput
"""
delete the field or element with specified path (for JSON arrays, negative integers count from the end)
"""
_deleteAtPath: AddressDeleteAtPathInput
"""
delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array
"""
_deleteElem: AddressDeleteElemInput
"""
delete key/value pair or string element. key/value pairs are matched based on their key value
"""
_deleteKey: AddressDeleteKeyInput
"""prepend existing jsonb value of filtered columns with new jsonb value"""
_prepend: AddressPrependInput
"""sets the columns of the filtered rows to the given values"""
_set: AddressSetInput
pkColumns: AddressPkColumnsInput!
): Address
"""
update multiples rows of table: "address"
"""
updateAddressMany(
"""updates to execute, in order"""
updates: [AddressUpdates!]!
): [AddressMutationResponse]
"""
update data of the table: "person"
"""
updatePerson(
"""sets the columns of the filtered rows to the given values"""
_set: PersonSetInput
"""filter the rows which have to be updated"""
where: PersonBoolExp!
): PersonMutationResponse
"""
update single row of the table: "person"
"""
updatePersonByPk(
"""sets the columns of the filtered rows to the given values"""
_set: PersonSetInput
pkColumns: PersonPkColumnsInput!
): Person
"""
update multiples rows of table: "person"
"""
updatePersonMany(
"""updates to execute, in order"""
updates: [PersonUpdates!]!
): [PersonMutationResponse]
}
type query_root {
"""
fetch data from the table: "address"
"""
address(
"""distinct select on columns"""
distinctOn: [AddressSelectColumn!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
orderBy: [AddressOrderBy!]
"""filter the rows returned"""
where: AddressBoolExp
): [Address!]!
"""
fetch aggregated fields from the table: "address"
"""
addressAggregate(
"""distinct select on columns"""
distinctOn: [AddressSelectColumn!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
orderBy: [AddressOrderBy!]
"""filter the rows returned"""
where: AddressBoolExp
): AddressAggregate!
"""fetch data from the table: "address" using primary key columns"""
addressByPk(id: uuid!): Address
"""
fetch data from the table: "person"
"""
person(
"""distinct select on columns"""
distinctOn: [PersonSelectColumn!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
orderBy: [PersonOrderBy!]
"""filter the rows returned"""
where: PersonBoolExp
): [Person!]!
"""
fetch aggregated fields from the table: "person"
"""
personAggregate(
"""distinct select on columns"""
distinctOn: [PersonSelectColumn!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
orderBy: [PersonOrderBy!]
"""filter the rows returned"""
where: PersonBoolExp
): PersonAggregate!
"""fetch data from the table: "person" using primary key columns"""
personByPk(id: uuid!): Person
}
type subscription_root {
"""
fetch data from the table: "address"
"""
address(
"""distinct select on columns"""
distinctOn: [AddressSelectColumn!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
orderBy: [AddressOrderBy!]
"""filter the rows returned"""
where: AddressBoolExp
): [Address!]!
"""
fetch aggregated fields from the table: "address"
"""
addressAggregate(
"""distinct select on columns"""
distinctOn: [AddressSelectColumn!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
orderBy: [AddressOrderBy!]
"""filter the rows returned"""
where: AddressBoolExp
): AddressAggregate!
"""fetch data from the table: "address" using primary key columns"""
addressByPk(id: uuid!): Address
"""
fetch data from the table in a streaming manner: "address"
"""
addressStream(
"""maximum number of rows returned in a single batch"""
batchSize: Int!
"""cursor to stream the results returned by the query"""
cursor: [AddressStreamCursorInput]!
"""filter the rows returned"""
where: AddressBoolExp
): [Address!]!
"""
fetch data from the table: "person"
"""
person(
"""distinct select on columns"""
distinctOn: [PersonSelectColumn!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""
orderBy: [PersonOrderBy!]
"""filter the rows returned"""
where: PersonBoolExp
): [Person!]!
"""
fetch aggregated fields from the table: "person"
"""
personAggregate(
"""distinct select on columns"""
distinctOn: [PersonSelectColumn!]
"""limit the number of rows returned"""
limit: Int
"""skip the first n rows. Use only with order_by"""
offset: Int
"""sort the rows by one or more columns"""