-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.graphql
20569 lines (18313 loc) · 574 KB
/
schema.graphql
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
enum ActionKind {
"""
Action responsible for fetching data from a resource
"""
ApiAction
"""
Action with custom code
"""
CodeAction
}
"""
Allows picking a action from the list of actions
"""
type ActionType implements IBaseType {
id: ID!
kind: TypeKind!
name: String!
owner(directed: Boolean = true, options: UserOptions, where: UserWhere): User!
ownerAggregate(
directed: Boolean = true
where: UserWhere
): ActionTypeUserOwnerAggregationSelection
ownerConnection(
after: String
directed: Boolean = true
first: Int
sort: [IBaseTypeOwnerConnectionSort!]
where: IBaseTypeOwnerConnectionWhere
): IBaseTypeOwnerConnection!
}
type ActionTypeAggregateSelection {
count: Int!
id: IDAggregateSelectionNonNullable!
name: StringAggregateSelectionNonNullable!
}
input ActionTypeConnectInput {
owner: IBaseTypeOwnerConnectFieldInput
}
input ActionTypeConnectOrCreateInput {
owner: IBaseTypeOwnerConnectOrCreateFieldInput
}
input ActionTypeConnectOrCreateWhere {
node: ActionTypeUniqueWhere!
}
input ActionTypeConnectWhere {
node: ActionTypeWhere!
}
input ActionTypeCreateInput {
id: ID!
kind: TypeKind! = ActionType
name: String!
owner: IBaseTypeOwnerFieldInput
}
input ActionTypeDeleteInput {
owner: IBaseTypeOwnerDeleteFieldInput
}
input ActionTypeDisconnectInput {
owner: IBaseTypeOwnerDisconnectFieldInput
}
type ActionTypeEdge {
cursor: String!
node: ActionType!
}
input ActionTypeOnCreateInput {
id: ID!
kind: TypeKind! = ActionType
name: String!
}
input ActionTypeOptions {
limit: Int
offset: Int
"""
Specify one or more ActionTypeSort objects to sort ActionTypes by. The sorts will be applied in the order in which they are arranged in the array.
"""
sort: [ActionTypeSort!]
}
input ActionTypeOwnerAggregateInput {
AND: [ActionTypeOwnerAggregateInput!]
NOT: ActionTypeOwnerAggregateInput
OR: [ActionTypeOwnerAggregateInput!]
count: Int
count_GT: Int
count_GTE: Int
count_LT: Int
count_LTE: Int
node: ActionTypeOwnerNodeAggregationWhereInput
}
input ActionTypeOwnerNodeAggregationWhereInput {
AND: [ActionTypeOwnerNodeAggregationWhereInput!]
NOT: ActionTypeOwnerNodeAggregationWhereInput
OR: [ActionTypeOwnerNodeAggregationWhereInput!]
auth0Id_AVERAGE_LENGTH_EQUAL: Float
auth0Id_AVERAGE_LENGTH_GT: Float
auth0Id_AVERAGE_LENGTH_GTE: Float
auth0Id_AVERAGE_LENGTH_LT: Float
auth0Id_AVERAGE_LENGTH_LTE: Float
auth0Id_LONGEST_LENGTH_EQUAL: Int
auth0Id_LONGEST_LENGTH_GT: Int
auth0Id_LONGEST_LENGTH_GTE: Int
auth0Id_LONGEST_LENGTH_LT: Int
auth0Id_LONGEST_LENGTH_LTE: Int
auth0Id_SHORTEST_LENGTH_EQUAL: Int
auth0Id_SHORTEST_LENGTH_GT: Int
auth0Id_SHORTEST_LENGTH_GTE: Int
auth0Id_SHORTEST_LENGTH_LT: Int
auth0Id_SHORTEST_LENGTH_LTE: Int
email_AVERAGE_LENGTH_EQUAL: Float
email_AVERAGE_LENGTH_GT: Float
email_AVERAGE_LENGTH_GTE: Float
email_AVERAGE_LENGTH_LT: Float
email_AVERAGE_LENGTH_LTE: Float
email_LONGEST_LENGTH_EQUAL: Int
email_LONGEST_LENGTH_GT: Int
email_LONGEST_LENGTH_GTE: Int
email_LONGEST_LENGTH_LT: Int
email_LONGEST_LENGTH_LTE: Int
email_SHORTEST_LENGTH_EQUAL: Int
email_SHORTEST_LENGTH_GT: Int
email_SHORTEST_LENGTH_GTE: Int
email_SHORTEST_LENGTH_LT: Int
email_SHORTEST_LENGTH_LTE: Int
username_AVERAGE_LENGTH_EQUAL: Float
username_AVERAGE_LENGTH_GT: Float
username_AVERAGE_LENGTH_GTE: Float
username_AVERAGE_LENGTH_LT: Float
username_AVERAGE_LENGTH_LTE: Float
username_LONGEST_LENGTH_EQUAL: Int
username_LONGEST_LENGTH_GT: Int
username_LONGEST_LENGTH_GTE: Int
username_LONGEST_LENGTH_LT: Int
username_LONGEST_LENGTH_LTE: Int
username_SHORTEST_LENGTH_EQUAL: Int
username_SHORTEST_LENGTH_GT: Int
username_SHORTEST_LENGTH_GTE: Int
username_SHORTEST_LENGTH_LT: Int
username_SHORTEST_LENGTH_LTE: Int
}
input ActionTypeRelationInput {
owner: IBaseTypeOwnerCreateFieldInput
}
"""
Fields to sort ActionTypes by. The order in which sorts are applied is not guaranteed when specifying many fields in one ActionTypeSort object.
"""
input ActionTypeSort {
id: SortDirection
kind: SortDirection
name: SortDirection
}
input ActionTypeUniqueWhere {
id: ID
name: String
}
input ActionTypeUpdateInput {
id: ID
name: String
owner: IBaseTypeOwnerUpdateFieldInput
}
type ActionTypeUserOwnerAggregationSelection {
count: Int!
node: ActionTypeUserOwnerNodeAggregateSelection
}
type ActionTypeUserOwnerNodeAggregateSelection {
auth0Id: StringAggregateSelectionNonNullable!
email: StringAggregateSelectionNonNullable!
id: IDAggregateSelectionNonNullable!
username: StringAggregateSelectionNonNullable!
}
input ActionTypeWhere {
AND: [ActionTypeWhere!]
NOT: ActionTypeWhere
OR: [ActionTypeWhere!]
id: ID
id_CONTAINS: ID
id_ENDS_WITH: ID
id_IN: [ID!]
id_MATCHES: String
id_STARTS_WITH: ID
kind: TypeKind
kind_IN: [TypeKind!]
name: String
name_CONTAINS: String
name_ENDS_WITH: String
name_IN: [String!]
name_MATCHES: String
name_STARTS_WITH: String
owner: UserWhere
ownerAggregate: ActionTypeOwnerAggregateInput
ownerConnection: IBaseTypeOwnerConnectionWhere
ownerConnection_NOT: IBaseTypeOwnerConnectionWhere
owner_NOT: UserWhere
}
type ActionTypesConnection {
edges: [ActionTypeEdge!]!
pageInfo: PageInfo!
totalCount: Int!
}
union AnyAction = ApiAction | CodeAction
input AnyActionWhere {
ApiAction: ApiActionWhere
CodeAction: CodeActionWhere
}
union AnyType =
ActionType
| AppType
| ArrayType
| CodeMirrorType
| ElementType
| EnumType
| InterfaceType
| LambdaType
| PageType
| PrimitiveType
| ReactNodeType
| RenderPropType
| UnionType
input AnyTypeWhere {
ActionType: ActionTypeWhere
AppType: AppTypeWhere
ArrayType: ArrayTypeWhere
CodeMirrorType: CodeMirrorTypeWhere
ElementType: ElementTypeWhere
EnumType: EnumTypeWhere
InterfaceType: InterfaceTypeWhere
LambdaType: LambdaTypeWhere
PageType: PageTypeWhere
PrimitiveType: PrimitiveTypeWhere
ReactNodeType: ReactNodeTypeWhere
RenderPropType: RenderPropTypeWhere
UnionType: UnionTypeWhere
}
type ApiAction implements BaseAction {
config(
directed: Boolean = true
options: PropOptions
where: PropWhere
): Prop!
configAggregate(
directed: Boolean = true
where: PropWhere
): ApiActionPropConfigAggregationSelection
configConnection(
after: String
directed: Boolean = true
first: Int
sort: [ApiActionConfigConnectionSort!]
where: ApiActionConfigConnectionWhere
): ApiActionConfigConnection!
element(
directed: Boolean = true
options: ElementOptions
where: ElementWhere
): Element
elementAggregate(
directed: Boolean = true
where: ElementWhere
): ApiActionElementElementAggregationSelection
elementConnection(
after: String
directed: Boolean = true
first: Int
sort: [BaseActionElementConnectionSort!]
where: BaseActionElementConnectionWhere
): BaseActionElementConnection!
errorAction(
directed: Boolean = true
options: QueryOptions
where: AnyActionWhere
): AnyAction
errorActionConnection(
after: String
directed: Boolean = true
first: Int
where: ApiActionErrorActionConnectionWhere
): ApiActionErrorActionConnection!
id: ID!
name: String!
"""
Resource to fetch data from
"""
resource(
directed: Boolean = true
options: ResourceOptions
where: ResourceWhere
): Resource!
resourceAggregate(
directed: Boolean = true
where: ResourceWhere
): ApiActionResourceResourceAggregationSelection
resourceConnection(
after: String
directed: Boolean = true
first: Int
sort: [ApiActionResourceConnectionSort!]
where: ApiActionResourceConnectionWhere
): ApiActionResourceConnection!
store(
directed: Boolean = true
options: StoreOptions
where: StoreWhere
): Store!
storeAggregate(
directed: Boolean = true
where: StoreWhere
): ApiActionStoreStoreAggregationSelection
storeConnection(
after: String
directed: Boolean = true
first: Int
sort: [BaseActionStoreConnectionSort!]
where: BaseActionStoreConnectionWhere
): BaseActionStoreConnection!
"""
Response handlers
"""
successAction(
directed: Boolean = true
options: QueryOptions
where: AnyActionWhere
): AnyAction
successActionConnection(
after: String
directed: Boolean = true
first: Int
where: ApiActionSuccessActionConnectionWhere
): ApiActionSuccessActionConnection!
type: ActionKind!
}
type ApiActionAggregateSelection {
count: Int!
id: IDAggregateSelectionNonNullable!
name: StringAggregateSelectionNonNullable!
}
input ApiActionConfigAggregateInput {
AND: [ApiActionConfigAggregateInput!]
NOT: ApiActionConfigAggregateInput
OR: [ApiActionConfigAggregateInput!]
count: Int
count_GT: Int
count_GTE: Int
count_LT: Int
count_LTE: Int
node: ApiActionConfigNodeAggregationWhereInput
}
input ApiActionConfigConnectFieldInput {
"""
Whether or not to overwrite any matching relationship with the new properties. Will default to `false` in 4.0.0.
"""
overwrite: Boolean! = true
where: PropConnectWhere
}
input ApiActionConfigConnectOrCreateFieldInput {
onCreate: ApiActionConfigConnectOrCreateFieldInputOnCreate!
where: PropConnectOrCreateWhere!
}
input ApiActionConfigConnectOrCreateFieldInputOnCreate {
node: PropOnCreateInput!
}
type ApiActionConfigConnection {
edges: [ApiActionConfigRelationship!]!
pageInfo: PageInfo!
totalCount: Int!
}
input ApiActionConfigConnectionSort {
node: PropSort
}
input ApiActionConfigConnectionWhere {
AND: [ApiActionConfigConnectionWhere!]
NOT: ApiActionConfigConnectionWhere
OR: [ApiActionConfigConnectionWhere!]
node: PropWhere
}
input ApiActionConfigCreateFieldInput {
node: PropCreateInput!
}
input ApiActionConfigDeleteFieldInput {
where: ApiActionConfigConnectionWhere
}
input ApiActionConfigDisconnectFieldInput {
where: ApiActionConfigConnectionWhere
}
input ApiActionConfigFieldInput {
connect: ApiActionConfigConnectFieldInput
connectOrCreate: ApiActionConfigConnectOrCreateFieldInput
create: ApiActionConfigCreateFieldInput
}
input ApiActionConfigNodeAggregationWhereInput {
AND: [ApiActionConfigNodeAggregationWhereInput!]
NOT: ApiActionConfigNodeAggregationWhereInput
OR: [ApiActionConfigNodeAggregationWhereInput!]
data_AVERAGE_LENGTH_EQUAL: Float
data_AVERAGE_LENGTH_GT: Float
data_AVERAGE_LENGTH_GTE: Float
data_AVERAGE_LENGTH_LT: Float
data_AVERAGE_LENGTH_LTE: Float
data_LONGEST_LENGTH_EQUAL: Int
data_LONGEST_LENGTH_GT: Int
data_LONGEST_LENGTH_GTE: Int
data_LONGEST_LENGTH_LT: Int
data_LONGEST_LENGTH_LTE: Int
data_SHORTEST_LENGTH_EQUAL: Int
data_SHORTEST_LENGTH_GT: Int
data_SHORTEST_LENGTH_GTE: Int
data_SHORTEST_LENGTH_LT: Int
data_SHORTEST_LENGTH_LTE: Int
}
type ApiActionConfigRelationship {
cursor: String!
node: Prop!
}
input ApiActionConfigUpdateConnectionInput {
node: PropUpdateInput
}
input ApiActionConfigUpdateFieldInput {
connect: ApiActionConfigConnectFieldInput
connectOrCreate: ApiActionConfigConnectOrCreateFieldInput
create: ApiActionConfigCreateFieldInput
delete: ApiActionConfigDeleteFieldInput
disconnect: ApiActionConfigDisconnectFieldInput
update: ApiActionConfigUpdateConnectionInput
where: ApiActionConfigConnectionWhere
}
input ApiActionConnectInput {
config: ApiActionConfigConnectFieldInput
element: BaseActionElementConnectFieldInput
errorAction: ApiActionErrorActionConnectInput
resource: ApiActionResourceConnectFieldInput
store: BaseActionStoreConnectFieldInput
successAction: ApiActionSuccessActionConnectInput
}
input ApiActionConnectOrCreateInput {
config: ApiActionConfigConnectOrCreateFieldInput
element: BaseActionElementConnectOrCreateFieldInput
errorAction: ApiActionErrorActionConnectOrCreateInput
resource: ApiActionResourceConnectOrCreateFieldInput
store: BaseActionStoreConnectOrCreateFieldInput
successAction: ApiActionSuccessActionConnectOrCreateInput
}
input ApiActionConnectOrCreateWhere {
node: ApiActionUniqueWhere!
}
input ApiActionConnectWhere {
node: ApiActionWhere!
}
input ApiActionCreateInput {
config: ApiActionConfigFieldInput
element: BaseActionElementFieldInput
errorAction: ApiActionErrorActionCreateInput
id: ID!
name: String!
resource: ApiActionResourceFieldInput
store: BaseActionStoreFieldInput
successAction: ApiActionSuccessActionCreateInput
type: ActionKind! = ApiAction
}
input ApiActionDeleteInput {
config: ApiActionConfigDeleteFieldInput
element: BaseActionElementDeleteFieldInput
errorAction: ApiActionErrorActionDeleteInput
resource: ApiActionResourceDeleteFieldInput
store: BaseActionStoreDeleteFieldInput
successAction: ApiActionSuccessActionDeleteInput
}
input ApiActionDisconnectInput {
config: ApiActionConfigDisconnectFieldInput
element: BaseActionElementDisconnectFieldInput
errorAction: ApiActionErrorActionDisconnectInput
resource: ApiActionResourceDisconnectFieldInput
store: BaseActionStoreDisconnectFieldInput
successAction: ApiActionSuccessActionDisconnectInput
}
type ApiActionEdge {
cursor: String!
node: ApiAction!
}
input ApiActionElementAggregateInput {
AND: [ApiActionElementAggregateInput!]
NOT: ApiActionElementAggregateInput
OR: [ApiActionElementAggregateInput!]
count: Int
count_GT: Int
count_GTE: Int
count_LT: Int
count_LTE: Int
node: ApiActionElementNodeAggregationWhereInput
}
type ApiActionElementElementAggregationSelection {
count: Int!
node: ApiActionElementElementNodeAggregateSelection
}
type ApiActionElementElementNodeAggregateSelection {
childMapperPropKey: StringAggregateSelectionNullable!
customCss: StringAggregateSelectionNullable!
guiCss: StringAggregateSelectionNullable!
id: IDAggregateSelectionNonNullable!
name: StringAggregateSelectionNonNullable!
propTransformationJs: StringAggregateSelectionNullable!
renderForEachPropKey: StringAggregateSelectionNullable!
renderIfExpression: StringAggregateSelectionNullable!
}
input ApiActionElementNodeAggregationWhereInput {
AND: [ApiActionElementNodeAggregationWhereInput!]
NOT: ApiActionElementNodeAggregationWhereInput
OR: [ApiActionElementNodeAggregationWhereInput!]
childMapperPropKey_AVERAGE_LENGTH_EQUAL: Float
childMapperPropKey_AVERAGE_LENGTH_GT: Float
childMapperPropKey_AVERAGE_LENGTH_GTE: Float
childMapperPropKey_AVERAGE_LENGTH_LT: Float
childMapperPropKey_AVERAGE_LENGTH_LTE: Float
childMapperPropKey_LONGEST_LENGTH_EQUAL: Int
childMapperPropKey_LONGEST_LENGTH_GT: Int
childMapperPropKey_LONGEST_LENGTH_GTE: Int
childMapperPropKey_LONGEST_LENGTH_LT: Int
childMapperPropKey_LONGEST_LENGTH_LTE: Int
childMapperPropKey_SHORTEST_LENGTH_EQUAL: Int
childMapperPropKey_SHORTEST_LENGTH_GT: Int
childMapperPropKey_SHORTEST_LENGTH_GTE: Int
childMapperPropKey_SHORTEST_LENGTH_LT: Int
childMapperPropKey_SHORTEST_LENGTH_LTE: Int
customCss_AVERAGE_LENGTH_EQUAL: Float
customCss_AVERAGE_LENGTH_GT: Float
customCss_AVERAGE_LENGTH_GTE: Float
customCss_AVERAGE_LENGTH_LT: Float
customCss_AVERAGE_LENGTH_LTE: Float
customCss_LONGEST_LENGTH_EQUAL: Int
customCss_LONGEST_LENGTH_GT: Int
customCss_LONGEST_LENGTH_GTE: Int
customCss_LONGEST_LENGTH_LT: Int
customCss_LONGEST_LENGTH_LTE: Int
customCss_SHORTEST_LENGTH_EQUAL: Int
customCss_SHORTEST_LENGTH_GT: Int
customCss_SHORTEST_LENGTH_GTE: Int
customCss_SHORTEST_LENGTH_LT: Int
customCss_SHORTEST_LENGTH_LTE: Int
guiCss_AVERAGE_LENGTH_EQUAL: Float
guiCss_AVERAGE_LENGTH_GT: Float
guiCss_AVERAGE_LENGTH_GTE: Float
guiCss_AVERAGE_LENGTH_LT: Float
guiCss_AVERAGE_LENGTH_LTE: Float
guiCss_LONGEST_LENGTH_EQUAL: Int
guiCss_LONGEST_LENGTH_GT: Int
guiCss_LONGEST_LENGTH_GTE: Int
guiCss_LONGEST_LENGTH_LT: Int
guiCss_LONGEST_LENGTH_LTE: Int
guiCss_SHORTEST_LENGTH_EQUAL: Int
guiCss_SHORTEST_LENGTH_GT: Int
guiCss_SHORTEST_LENGTH_GTE: Int
guiCss_SHORTEST_LENGTH_LT: Int
guiCss_SHORTEST_LENGTH_LTE: Int
name_AVERAGE_LENGTH_EQUAL: Float
name_AVERAGE_LENGTH_GT: Float
name_AVERAGE_LENGTH_GTE: Float
name_AVERAGE_LENGTH_LT: Float
name_AVERAGE_LENGTH_LTE: Float
name_LONGEST_LENGTH_EQUAL: Int
name_LONGEST_LENGTH_GT: Int
name_LONGEST_LENGTH_GTE: Int
name_LONGEST_LENGTH_LT: Int
name_LONGEST_LENGTH_LTE: Int
name_SHORTEST_LENGTH_EQUAL: Int
name_SHORTEST_LENGTH_GT: Int
name_SHORTEST_LENGTH_GTE: Int
name_SHORTEST_LENGTH_LT: Int
name_SHORTEST_LENGTH_LTE: Int
propTransformationJs_AVERAGE_LENGTH_EQUAL: Float
propTransformationJs_AVERAGE_LENGTH_GT: Float
propTransformationJs_AVERAGE_LENGTH_GTE: Float
propTransformationJs_AVERAGE_LENGTH_LT: Float
propTransformationJs_AVERAGE_LENGTH_LTE: Float
propTransformationJs_LONGEST_LENGTH_EQUAL: Int
propTransformationJs_LONGEST_LENGTH_GT: Int
propTransformationJs_LONGEST_LENGTH_GTE: Int
propTransformationJs_LONGEST_LENGTH_LT: Int
propTransformationJs_LONGEST_LENGTH_LTE: Int
propTransformationJs_SHORTEST_LENGTH_EQUAL: Int
propTransformationJs_SHORTEST_LENGTH_GT: Int
propTransformationJs_SHORTEST_LENGTH_GTE: Int
propTransformationJs_SHORTEST_LENGTH_LT: Int
propTransformationJs_SHORTEST_LENGTH_LTE: Int
renderForEachPropKey_AVERAGE_LENGTH_EQUAL: Float
renderForEachPropKey_AVERAGE_LENGTH_GT: Float
renderForEachPropKey_AVERAGE_LENGTH_GTE: Float
renderForEachPropKey_AVERAGE_LENGTH_LT: Float
renderForEachPropKey_AVERAGE_LENGTH_LTE: Float
renderForEachPropKey_LONGEST_LENGTH_EQUAL: Int
renderForEachPropKey_LONGEST_LENGTH_GT: Int
renderForEachPropKey_LONGEST_LENGTH_GTE: Int
renderForEachPropKey_LONGEST_LENGTH_LT: Int
renderForEachPropKey_LONGEST_LENGTH_LTE: Int
renderForEachPropKey_SHORTEST_LENGTH_EQUAL: Int
renderForEachPropKey_SHORTEST_LENGTH_GT: Int
renderForEachPropKey_SHORTEST_LENGTH_GTE: Int
renderForEachPropKey_SHORTEST_LENGTH_LT: Int
renderForEachPropKey_SHORTEST_LENGTH_LTE: Int
renderIfExpression_AVERAGE_LENGTH_EQUAL: Float
renderIfExpression_AVERAGE_LENGTH_GT: Float
renderIfExpression_AVERAGE_LENGTH_GTE: Float
renderIfExpression_AVERAGE_LENGTH_LT: Float
renderIfExpression_AVERAGE_LENGTH_LTE: Float
renderIfExpression_LONGEST_LENGTH_EQUAL: Int
renderIfExpression_LONGEST_LENGTH_GT: Int
renderIfExpression_LONGEST_LENGTH_GTE: Int
renderIfExpression_LONGEST_LENGTH_LT: Int
renderIfExpression_LONGEST_LENGTH_LTE: Int
renderIfExpression_SHORTEST_LENGTH_EQUAL: Int
renderIfExpression_SHORTEST_LENGTH_GT: Int
renderIfExpression_SHORTEST_LENGTH_GTE: Int
renderIfExpression_SHORTEST_LENGTH_LT: Int
renderIfExpression_SHORTEST_LENGTH_LTE: Int
}
input ApiActionErrorActionApiActionConnectFieldInput {
connect: ApiActionConnectInput
where: ApiActionConnectWhere
}
input ApiActionErrorActionApiActionConnectOrCreateFieldInput {
onCreate: ApiActionErrorActionApiActionConnectOrCreateFieldInputOnCreate!
where: ApiActionConnectOrCreateWhere!
}
input ApiActionErrorActionApiActionConnectOrCreateFieldInputOnCreate {
node: ApiActionOnCreateInput!
}
input ApiActionErrorActionApiActionConnectionWhere {
AND: [ApiActionErrorActionApiActionConnectionWhere!]
NOT: ApiActionErrorActionApiActionConnectionWhere
OR: [ApiActionErrorActionApiActionConnectionWhere!]
node: ApiActionWhere
}
input ApiActionErrorActionApiActionCreateFieldInput {
node: ApiActionCreateInput!
}
input ApiActionErrorActionApiActionDeleteFieldInput {
delete: ApiActionDeleteInput
where: ApiActionErrorActionApiActionConnectionWhere
}
input ApiActionErrorActionApiActionDisconnectFieldInput {
disconnect: ApiActionDisconnectInput
where: ApiActionErrorActionApiActionConnectionWhere
}
input ApiActionErrorActionApiActionFieldInput {
connect: ApiActionErrorActionApiActionConnectFieldInput
connectOrCreate: ApiActionErrorActionApiActionConnectOrCreateFieldInput
create: ApiActionErrorActionApiActionCreateFieldInput
}
input ApiActionErrorActionApiActionUpdateConnectionInput {
node: ApiActionUpdateInput
}
input ApiActionErrorActionApiActionUpdateFieldInput {
connect: ApiActionErrorActionApiActionConnectFieldInput
connectOrCreate: ApiActionErrorActionApiActionConnectOrCreateFieldInput
create: ApiActionErrorActionApiActionCreateFieldInput
delete: ApiActionErrorActionApiActionDeleteFieldInput
disconnect: ApiActionErrorActionApiActionDisconnectFieldInput
update: ApiActionErrorActionApiActionUpdateConnectionInput
where: ApiActionErrorActionApiActionConnectionWhere
}
input ApiActionErrorActionCodeActionConnectFieldInput {
connect: CodeActionConnectInput
where: CodeActionConnectWhere
}
input ApiActionErrorActionCodeActionConnectOrCreateFieldInput {
onCreate: ApiActionErrorActionCodeActionConnectOrCreateFieldInputOnCreate!
where: CodeActionConnectOrCreateWhere!
}
input ApiActionErrorActionCodeActionConnectOrCreateFieldInputOnCreate {
node: CodeActionOnCreateInput!
}
input ApiActionErrorActionCodeActionConnectionWhere {
AND: [ApiActionErrorActionCodeActionConnectionWhere!]
NOT: ApiActionErrorActionCodeActionConnectionWhere
OR: [ApiActionErrorActionCodeActionConnectionWhere!]
node: CodeActionWhere
}
input ApiActionErrorActionCodeActionCreateFieldInput {
node: CodeActionCreateInput!
}
input ApiActionErrorActionCodeActionDeleteFieldInput {
delete: CodeActionDeleteInput
where: ApiActionErrorActionCodeActionConnectionWhere
}
input ApiActionErrorActionCodeActionDisconnectFieldInput {
disconnect: CodeActionDisconnectInput
where: ApiActionErrorActionCodeActionConnectionWhere
}
input ApiActionErrorActionCodeActionFieldInput {
connect: ApiActionErrorActionCodeActionConnectFieldInput
connectOrCreate: ApiActionErrorActionCodeActionConnectOrCreateFieldInput
create: ApiActionErrorActionCodeActionCreateFieldInput
}
input ApiActionErrorActionCodeActionUpdateConnectionInput {
node: CodeActionUpdateInput
}
input ApiActionErrorActionCodeActionUpdateFieldInput {
connect: ApiActionErrorActionCodeActionConnectFieldInput
connectOrCreate: ApiActionErrorActionCodeActionConnectOrCreateFieldInput
create: ApiActionErrorActionCodeActionCreateFieldInput
delete: ApiActionErrorActionCodeActionDeleteFieldInput
disconnect: ApiActionErrorActionCodeActionDisconnectFieldInput
update: ApiActionErrorActionCodeActionUpdateConnectionInput
where: ApiActionErrorActionCodeActionConnectionWhere
}
input ApiActionErrorActionConnectInput {
ApiAction: ApiActionErrorActionApiActionConnectFieldInput
CodeAction: ApiActionErrorActionCodeActionConnectFieldInput
}
input ApiActionErrorActionConnectOrCreateInput {
ApiAction: ApiActionErrorActionApiActionConnectOrCreateFieldInput
CodeAction: ApiActionErrorActionCodeActionConnectOrCreateFieldInput
}
type ApiActionErrorActionConnection {
edges: [ApiActionErrorActionRelationship!]!
pageInfo: PageInfo!
totalCount: Int!
}
input ApiActionErrorActionConnectionWhere {
ApiAction: ApiActionErrorActionApiActionConnectionWhere
CodeAction: ApiActionErrorActionCodeActionConnectionWhere
}
input ApiActionErrorActionCreateFieldInput {
ApiAction: ApiActionErrorActionApiActionCreateFieldInput
CodeAction: ApiActionErrorActionCodeActionCreateFieldInput
}
input ApiActionErrorActionCreateInput {
ApiAction: ApiActionErrorActionApiActionFieldInput
CodeAction: ApiActionErrorActionCodeActionFieldInput
}
input ApiActionErrorActionDeleteInput {
ApiAction: ApiActionErrorActionApiActionDeleteFieldInput
CodeAction: ApiActionErrorActionCodeActionDeleteFieldInput
}
input ApiActionErrorActionDisconnectInput {
ApiAction: ApiActionErrorActionApiActionDisconnectFieldInput
CodeAction: ApiActionErrorActionCodeActionDisconnectFieldInput
}
type ApiActionErrorActionRelationship {
cursor: String!
node: AnyAction!
}
input ApiActionErrorActionUpdateInput {
ApiAction: ApiActionErrorActionApiActionUpdateFieldInput
CodeAction: ApiActionErrorActionCodeActionUpdateFieldInput
}
input ApiActionOnCreateInput {
id: ID!
name: String!
type: ActionKind! = ApiAction
}
input ApiActionOptions {
limit: Int
offset: Int
"""
Specify one or more ApiActionSort objects to sort ApiActions by. The sorts will be applied in the order in which they are arranged in the array.
"""
sort: [ApiActionSort!]
}
type ApiActionPropConfigAggregationSelection {
count: Int!
node: ApiActionPropConfigNodeAggregateSelection
}
type ApiActionPropConfigNodeAggregateSelection {
data: StringAggregateSelectionNonNullable!
id: IDAggregateSelectionNonNullable!
}
input ApiActionRelationInput {
config: ApiActionConfigCreateFieldInput
element: BaseActionElementCreateFieldInput
errorAction: ApiActionErrorActionCreateFieldInput
resource: ApiActionResourceCreateFieldInput
store: BaseActionStoreCreateFieldInput
successAction: ApiActionSuccessActionCreateFieldInput
}
input ApiActionResourceAggregateInput {
AND: [ApiActionResourceAggregateInput!]
NOT: ApiActionResourceAggregateInput
OR: [ApiActionResourceAggregateInput!]
count: Int
count_GT: Int
count_GTE: Int
count_LT: Int
count_LTE: Int
node: ApiActionResourceNodeAggregationWhereInput
}
input ApiActionResourceConnectFieldInput {
connect: ResourceConnectInput
"""
Whether or not to overwrite any matching relationship with the new properties. Will default to `false` in 4.0.0.
"""
overwrite: Boolean! = true
where: ResourceConnectWhere
}
input ApiActionResourceConnectOrCreateFieldInput {
onCreate: ApiActionResourceConnectOrCreateFieldInputOnCreate!
where: ResourceConnectOrCreateWhere!
}
input ApiActionResourceConnectOrCreateFieldInputOnCreate {
node: ResourceOnCreateInput!
}
type ApiActionResourceConnection {
edges: [ApiActionResourceRelationship!]!
pageInfo: PageInfo!
totalCount: Int!
}
input ApiActionResourceConnectionSort {
node: ResourceSort
}
input ApiActionResourceConnectionWhere {
AND: [ApiActionResourceConnectionWhere!]
NOT: ApiActionResourceConnectionWhere
OR: [ApiActionResourceConnectionWhere!]
node: ResourceWhere
}
input ApiActionResourceCreateFieldInput {
node: ResourceCreateInput!
}
input ApiActionResourceDeleteFieldInput {
delete: ResourceDeleteInput
where: ApiActionResourceConnectionWhere
}
input ApiActionResourceDisconnectFieldInput {
disconnect: ResourceDisconnectInput
where: ApiActionResourceConnectionWhere
}
input ApiActionResourceFieldInput {
connect: ApiActionResourceConnectFieldInput
connectOrCreate: ApiActionResourceConnectOrCreateFieldInput
create: ApiActionResourceCreateFieldInput
}
input ApiActionResourceNodeAggregationWhereInput {
AND: [ApiActionResourceNodeAggregationWhereInput!]
NOT: ApiActionResourceNodeAggregationWhereInput
OR: [ApiActionResourceNodeAggregationWhereInput!]
name_AVERAGE_LENGTH_EQUAL: Float
name_AVERAGE_LENGTH_GT: Float
name_AVERAGE_LENGTH_GTE: Float
name_AVERAGE_LENGTH_LT: Float
name_AVERAGE_LENGTH_LTE: Float
name_LONGEST_LENGTH_EQUAL: Int
name_LONGEST_LENGTH_GT: Int
name_LONGEST_LENGTH_GTE: Int
name_LONGEST_LENGTH_LT: Int
name_LONGEST_LENGTH_LTE: Int
name_SHORTEST_LENGTH_EQUAL: Int
name_SHORTEST_LENGTH_GT: Int
name_SHORTEST_LENGTH_GTE: Int
name_SHORTEST_LENGTH_LT: Int
name_SHORTEST_LENGTH_LTE: Int
}
type ApiActionResourceRelationship {
cursor: String!
node: Resource!
}
type ApiActionResourceResourceAggregationSelection {
count: Int!
node: ApiActionResourceResourceNodeAggregateSelection
}
type ApiActionResourceResourceNodeAggregateSelection {
id: IDAggregateSelectionNonNullable!
name: StringAggregateSelectionNonNullable!
}
input ApiActionResourceUpdateConnectionInput {
node: ResourceUpdateInput
}
input ApiActionResourceUpdateFieldInput {
connect: ApiActionResourceConnectFieldInput
connectOrCreate: ApiActionResourceConnectOrCreateFieldInput
create: ApiActionResourceCreateFieldInput
delete: ApiActionResourceDeleteFieldInput
disconnect: ApiActionResourceDisconnectFieldInput
update: ApiActionResourceUpdateConnectionInput
where: ApiActionResourceConnectionWhere
}
"""
Fields to sort ApiActions by. The order in which sorts are applied is not guaranteed when specifying many fields in one ApiActionSort object.
"""
input ApiActionSort {
id: SortDirection
name: SortDirection
type: SortDirection
}
input ApiActionStoreAggregateInput {
AND: [ApiActionStoreAggregateInput!]
NOT: ApiActionStoreAggregateInput
OR: [ApiActionStoreAggregateInput!]
count: Int
count_GT: Int
count_GTE: Int
count_LT: Int