@projectcaluma/ember-testing 11.0.0-beta.6 → 11.0.0-beta.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +28 -0
- package/addon/mirage-graphql/filters/base.js +17 -20
- package/addon/mirage-graphql/mocks/work-item.js +4 -0
- package/addon/mirage-graphql/schema.graphql +115 -1734
- package/addon/scenarios/distribution.js +25 -5
- package/addon-mirage-support/factories/answer.js +3 -2
- package/addon-mirage-support/factories/case.js +1 -1
- package/addon-mirage-support/factories/document.js +2 -0
- package/addon-mirage-support/factories/work-item.js +1 -1
- package/package.json +12 -12
|
@@ -33,35 +33,8 @@ type ActionButtonQuestion implements Question & Node {
|
|
|
33
33
|
after: String = null
|
|
34
34
|
first: Int = null
|
|
35
35
|
last: Int = null
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
description: String = null
|
|
39
|
-
isPublished: Boolean = null
|
|
40
|
-
isArchived: Boolean = null
|
|
41
|
-
questions: [String] = null
|
|
42
|
-
createdByUser: String = null
|
|
43
|
-
createdByGroup: String = null
|
|
44
|
-
modifiedByUser: String = null
|
|
45
|
-
modifiedByGroup: String = null
|
|
46
|
-
|
|
47
|
-
"""
|
|
48
|
-
Only return entries created after the given DateTime (Exclusive)
|
|
49
|
-
"""
|
|
50
|
-
createdBefore: DateTime = null
|
|
51
|
-
|
|
52
|
-
"""
|
|
53
|
-
Only return entries created at or before the given DateTime (Inclusive)
|
|
54
|
-
"""
|
|
55
|
-
createdAfter: DateTime = null
|
|
56
|
-
metaHasKey: String = null
|
|
57
|
-
metaValue: [JSONValueFilterType] = null
|
|
58
|
-
search: String = null
|
|
59
|
-
|
|
60
|
-
"""
|
|
61
|
-
FormOrdering
|
|
62
|
-
"""
|
|
63
|
-
orderBy: [FormOrdering] = null
|
|
64
|
-
slugs: [String] = null
|
|
36
|
+
filter: [FormFilterSetType] = null
|
|
37
|
+
order: [FormOrderSetType] = null
|
|
65
38
|
): FormConnection
|
|
66
39
|
|
|
67
40
|
"""
|
|
@@ -185,6 +158,12 @@ input AnalyticsFieldFilterSetType {
|
|
|
185
158
|
invert: Boolean
|
|
186
159
|
}
|
|
187
160
|
|
|
161
|
+
input AnalyticsFieldOrderSetType {
|
|
162
|
+
meta: String
|
|
163
|
+
attribute: SortableAnalyticsFieldAttributes
|
|
164
|
+
direction: AscDesc
|
|
165
|
+
}
|
|
166
|
+
|
|
188
167
|
type AnalyticsOutput {
|
|
189
168
|
records(
|
|
190
169
|
before: String = null
|
|
@@ -385,7 +364,6 @@ input AnswerFilterSetType {
|
|
|
385
364
|
createdAfter: DateTime
|
|
386
365
|
metaHasKey: String
|
|
387
366
|
metaValue: [JSONValueFilterType]
|
|
388
|
-
orderBy: [AnswerOrdering]
|
|
389
367
|
questions: [ID]
|
|
390
368
|
visibleInContext: Boolean
|
|
391
369
|
invert: Boolean
|
|
@@ -410,71 +388,6 @@ enum AnswerLookupMode {
|
|
|
410
388
|
LT
|
|
411
389
|
}
|
|
412
390
|
|
|
413
|
-
"""
|
|
414
|
-
An enumeration.
|
|
415
|
-
"""
|
|
416
|
-
enum AnswerOrdering {
|
|
417
|
-
"""
|
|
418
|
-
Created at
|
|
419
|
-
"""
|
|
420
|
-
CREATED_AT_ASC
|
|
421
|
-
|
|
422
|
-
"""
|
|
423
|
-
Created at (descending)
|
|
424
|
-
"""
|
|
425
|
-
CREATED_AT_DESC
|
|
426
|
-
|
|
427
|
-
"""
|
|
428
|
-
Modified at
|
|
429
|
-
"""
|
|
430
|
-
MODIFIED_AT_ASC
|
|
431
|
-
|
|
432
|
-
"""
|
|
433
|
-
Modified at (descending)
|
|
434
|
-
"""
|
|
435
|
-
MODIFIED_AT_DESC
|
|
436
|
-
|
|
437
|
-
"""
|
|
438
|
-
Created by user
|
|
439
|
-
"""
|
|
440
|
-
CREATED_BY_USER_ASC
|
|
441
|
-
|
|
442
|
-
"""
|
|
443
|
-
Created by user (descending)
|
|
444
|
-
"""
|
|
445
|
-
CREATED_BY_USER_DESC
|
|
446
|
-
|
|
447
|
-
"""
|
|
448
|
-
Created by group
|
|
449
|
-
"""
|
|
450
|
-
CREATED_BY_GROUP_ASC
|
|
451
|
-
|
|
452
|
-
"""
|
|
453
|
-
Created by group (descending)
|
|
454
|
-
"""
|
|
455
|
-
CREATED_BY_GROUP_DESC
|
|
456
|
-
|
|
457
|
-
"""
|
|
458
|
-
Modified by user
|
|
459
|
-
"""
|
|
460
|
-
MODIFIED_BY_USER_ASC
|
|
461
|
-
|
|
462
|
-
"""
|
|
463
|
-
Modified by user (descending)
|
|
464
|
-
"""
|
|
465
|
-
MODIFIED_BY_USER_DESC
|
|
466
|
-
|
|
467
|
-
"""
|
|
468
|
-
Modified by group
|
|
469
|
-
"""
|
|
470
|
-
MODIFIED_BY_GROUP_ASC
|
|
471
|
-
|
|
472
|
-
"""
|
|
473
|
-
Modified by group (descending)
|
|
474
|
-
"""
|
|
475
|
-
MODIFIED_BY_GROUP_DESC
|
|
476
|
-
}
|
|
477
|
-
|
|
478
391
|
input AnswerOrderSetType {
|
|
479
392
|
meta: String
|
|
480
393
|
attribute: SortableAnswerAttributes
|
|
@@ -582,35 +495,8 @@ type CalculatedFloatQuestion implements Question & Node {
|
|
|
582
495
|
after: String = null
|
|
583
496
|
first: Int = null
|
|
584
497
|
last: Int = null
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
description: String = null
|
|
588
|
-
isPublished: Boolean = null
|
|
589
|
-
isArchived: Boolean = null
|
|
590
|
-
questions: [String] = null
|
|
591
|
-
createdByUser: String = null
|
|
592
|
-
createdByGroup: String = null
|
|
593
|
-
modifiedByUser: String = null
|
|
594
|
-
modifiedByGroup: String = null
|
|
595
|
-
|
|
596
|
-
"""
|
|
597
|
-
Only return entries created after the given DateTime (Exclusive)
|
|
598
|
-
"""
|
|
599
|
-
createdBefore: DateTime = null
|
|
600
|
-
|
|
601
|
-
"""
|
|
602
|
-
Only return entries created at or before the given DateTime (Inclusive)
|
|
603
|
-
"""
|
|
604
|
-
createdAfter: DateTime = null
|
|
605
|
-
metaHasKey: String = null
|
|
606
|
-
metaValue: [JSONValueFilterType] = null
|
|
607
|
-
search: String = null
|
|
608
|
-
|
|
609
|
-
"""
|
|
610
|
-
FormOrdering
|
|
611
|
-
"""
|
|
612
|
-
orderBy: [FormOrdering] = null
|
|
613
|
-
slugs: [String] = null
|
|
498
|
+
filter: [FormFilterSetType] = null
|
|
499
|
+
order: [FormOrderSetType] = null
|
|
614
500
|
): FormConnection
|
|
615
501
|
calcExpression: String
|
|
616
502
|
|
|
@@ -679,48 +565,8 @@ type Case implements Node {
|
|
|
679
565
|
after: String = null
|
|
680
566
|
first: Int = null
|
|
681
567
|
last: Int = null
|
|
682
|
-
metaValue: [JSONValueFilterType] = null
|
|
683
|
-
status: WorkItemStatusArgument = null
|
|
684
|
-
name: String = null
|
|
685
|
-
task: ID = null
|
|
686
|
-
tasks: [String] = null
|
|
687
|
-
case: ID = null
|
|
688
|
-
createdAt: DateTime = null
|
|
689
|
-
closedAt: DateTime = null
|
|
690
|
-
modifiedAt: DateTime = null
|
|
691
|
-
deadline: DateTime = null
|
|
692
|
-
hasDeadline: Boolean = null
|
|
693
|
-
caseFamily: ID = null
|
|
694
|
-
|
|
695
|
-
"""
|
|
696
|
-
WorkItemOrdering
|
|
697
|
-
"""
|
|
698
|
-
orderBy: [WorkItemOrdering] = null
|
|
699
568
|
filter: [WorkItemFilterSetType] = null
|
|
700
569
|
order: [WorkItemOrderSetType] = null
|
|
701
|
-
createdByUser: String = null
|
|
702
|
-
createdByGroup: String = null
|
|
703
|
-
modifiedByUser: String = null
|
|
704
|
-
modifiedByGroup: String = null
|
|
705
|
-
|
|
706
|
-
"""
|
|
707
|
-
Only return entries created after the given DateTime (Exclusive)
|
|
708
|
-
"""
|
|
709
|
-
createdBefore: DateTime = null
|
|
710
|
-
|
|
711
|
-
"""
|
|
712
|
-
Only return entries created at or before the given DateTime (Inclusive)
|
|
713
|
-
"""
|
|
714
|
-
createdAfter: DateTime = null
|
|
715
|
-
metaHasKey: String = null
|
|
716
|
-
id: ID = null
|
|
717
|
-
addressedGroups: [String] = null
|
|
718
|
-
controllingGroups: [String] = null
|
|
719
|
-
assignedUsers: [String] = null
|
|
720
|
-
documentHasAnswer: [HasAnswerFilterType] = null
|
|
721
|
-
caseDocumentHasAnswer: [HasAnswerFilterType] = null
|
|
722
|
-
caseMetaValue: [JSONValueFilterType] = null
|
|
723
|
-
rootCaseMetaValue: [JSONValueFilterType] = null
|
|
724
570
|
): WorkItemConnection
|
|
725
571
|
parentWorkItem: WorkItem
|
|
726
572
|
familyWorkItems(
|
|
@@ -729,48 +575,8 @@ type Case implements Node {
|
|
|
729
575
|
after: String = null
|
|
730
576
|
first: Int = null
|
|
731
577
|
last: Int = null
|
|
732
|
-
metaValue: [JSONValueFilterType] = null
|
|
733
|
-
status: WorkItemStatusArgument = null
|
|
734
|
-
|
|
735
|
-
"""
|
|
736
|
-
WorkItemOrdering
|
|
737
|
-
"""
|
|
738
|
-
orderBy: [WorkItemOrdering] = null
|
|
739
578
|
filter: [WorkItemFilterSetType] = null
|
|
740
579
|
order: [WorkItemOrderSetType] = null
|
|
741
|
-
documentHasAnswer: [HasAnswerFilterType] = null
|
|
742
|
-
caseDocumentHasAnswer: [HasAnswerFilterType] = null
|
|
743
|
-
caseMetaValue: [JSONValueFilterType] = null
|
|
744
|
-
rootCaseMetaValue: [JSONValueFilterType] = null
|
|
745
|
-
name: String = null
|
|
746
|
-
task: ID = null
|
|
747
|
-
tasks: [String] = null
|
|
748
|
-
case: ID = null
|
|
749
|
-
createdAt: DateTime = null
|
|
750
|
-
closedAt: DateTime = null
|
|
751
|
-
modifiedAt: DateTime = null
|
|
752
|
-
deadline: DateTime = null
|
|
753
|
-
hasDeadline: Boolean = null
|
|
754
|
-
caseFamily: ID = null
|
|
755
|
-
createdByUser: String = null
|
|
756
|
-
createdByGroup: String = null
|
|
757
|
-
modifiedByUser: String = null
|
|
758
|
-
modifiedByGroup: String = null
|
|
759
|
-
|
|
760
|
-
"""
|
|
761
|
-
Only return entries created after the given DateTime (Exclusive)
|
|
762
|
-
"""
|
|
763
|
-
createdBefore: DateTime = null
|
|
764
|
-
|
|
765
|
-
"""
|
|
766
|
-
Only return entries created at or before the given DateTime (Inclusive)
|
|
767
|
-
"""
|
|
768
|
-
createdAfter: DateTime = null
|
|
769
|
-
metaHasKey: String = null
|
|
770
|
-
id: ID = null
|
|
771
|
-
addressedGroups: [String] = null
|
|
772
|
-
controllingGroups: [String] = null
|
|
773
|
-
assignedUsers: [String] = null
|
|
774
580
|
): WorkItemConnection
|
|
775
581
|
}
|
|
776
582
|
|
|
@@ -813,7 +619,6 @@ input CaseFilterSetType {
|
|
|
813
619
|
metaHasKey: String
|
|
814
620
|
metaValue: [JSONValueFilterType]
|
|
815
621
|
id: ID
|
|
816
|
-
orderBy: [CaseOrdering]
|
|
817
622
|
documentForm: String
|
|
818
623
|
documentForms: [String]
|
|
819
624
|
hasAnswer: [HasAnswerFilterType]
|
|
@@ -821,85 +626,9 @@ input CaseFilterSetType {
|
|
|
821
626
|
rootCase: ID
|
|
822
627
|
searchAnswers: [SearchAnswersFilterType]
|
|
823
628
|
status: [CaseStatusArgument]
|
|
824
|
-
orderByQuestionAnswerValue: String
|
|
825
629
|
invert: Boolean
|
|
826
630
|
}
|
|
827
631
|
|
|
828
|
-
"""
|
|
829
|
-
An enumeration.
|
|
830
|
-
"""
|
|
831
|
-
enum CaseOrdering {
|
|
832
|
-
"""
|
|
833
|
-
Status
|
|
834
|
-
"""
|
|
835
|
-
STATUS_ASC
|
|
836
|
-
|
|
837
|
-
"""
|
|
838
|
-
Status (descending)
|
|
839
|
-
"""
|
|
840
|
-
STATUS_DESC
|
|
841
|
-
|
|
842
|
-
"""
|
|
843
|
-
Created at
|
|
844
|
-
"""
|
|
845
|
-
CREATED_AT_ASC
|
|
846
|
-
|
|
847
|
-
"""
|
|
848
|
-
Created at (descending)
|
|
849
|
-
"""
|
|
850
|
-
CREATED_AT_DESC
|
|
851
|
-
|
|
852
|
-
"""
|
|
853
|
-
Modified at
|
|
854
|
-
"""
|
|
855
|
-
MODIFIED_AT_ASC
|
|
856
|
-
|
|
857
|
-
"""
|
|
858
|
-
Modified at (descending)
|
|
859
|
-
"""
|
|
860
|
-
MODIFIED_AT_DESC
|
|
861
|
-
|
|
862
|
-
"""
|
|
863
|
-
Created by user
|
|
864
|
-
"""
|
|
865
|
-
CREATED_BY_USER_ASC
|
|
866
|
-
|
|
867
|
-
"""
|
|
868
|
-
Created by user (descending)
|
|
869
|
-
"""
|
|
870
|
-
CREATED_BY_USER_DESC
|
|
871
|
-
|
|
872
|
-
"""
|
|
873
|
-
Created by group
|
|
874
|
-
"""
|
|
875
|
-
CREATED_BY_GROUP_ASC
|
|
876
|
-
|
|
877
|
-
"""
|
|
878
|
-
Created by group (descending)
|
|
879
|
-
"""
|
|
880
|
-
CREATED_BY_GROUP_DESC
|
|
881
|
-
|
|
882
|
-
"""
|
|
883
|
-
Modified by user
|
|
884
|
-
"""
|
|
885
|
-
MODIFIED_BY_USER_ASC
|
|
886
|
-
|
|
887
|
-
"""
|
|
888
|
-
Modified by user (descending)
|
|
889
|
-
"""
|
|
890
|
-
MODIFIED_BY_USER_DESC
|
|
891
|
-
|
|
892
|
-
"""
|
|
893
|
-
Modified by group
|
|
894
|
-
"""
|
|
895
|
-
MODIFIED_BY_GROUP_ASC
|
|
896
|
-
|
|
897
|
-
"""
|
|
898
|
-
Modified by group (descending)
|
|
899
|
-
"""
|
|
900
|
-
MODIFIED_BY_GROUP_DESC
|
|
901
|
-
}
|
|
902
|
-
|
|
903
632
|
input CaseOrderSetType {
|
|
904
633
|
meta: String
|
|
905
634
|
attribute: SortableCaseAttributes
|
|
@@ -969,35 +698,8 @@ type ChoiceQuestion implements Question & Node {
|
|
|
969
698
|
after: String = null
|
|
970
699
|
first: Int = null
|
|
971
700
|
last: Int = null
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
description: String = null
|
|
975
|
-
isPublished: Boolean = null
|
|
976
|
-
isArchived: Boolean = null
|
|
977
|
-
questions: [String] = null
|
|
978
|
-
createdByUser: String = null
|
|
979
|
-
createdByGroup: String = null
|
|
980
|
-
modifiedByUser: String = null
|
|
981
|
-
modifiedByGroup: String = null
|
|
982
|
-
|
|
983
|
-
"""
|
|
984
|
-
Only return entries created after the given DateTime (Exclusive)
|
|
985
|
-
"""
|
|
986
|
-
createdBefore: DateTime = null
|
|
987
|
-
|
|
988
|
-
"""
|
|
989
|
-
Only return entries created at or before the given DateTime (Inclusive)
|
|
990
|
-
"""
|
|
991
|
-
createdAfter: DateTime = null
|
|
992
|
-
metaHasKey: String = null
|
|
993
|
-
metaValue: [JSONValueFilterType] = null
|
|
994
|
-
search: String = null
|
|
995
|
-
|
|
996
|
-
"""
|
|
997
|
-
FormOrdering
|
|
998
|
-
"""
|
|
999
|
-
orderBy: [FormOrdering] = null
|
|
1000
|
-
slugs: [String] = null
|
|
701
|
+
filter: [FormFilterSetType] = null
|
|
702
|
+
order: [FormOrderSetType] = null
|
|
1001
703
|
): FormConnection
|
|
1002
704
|
options(
|
|
1003
705
|
offset: Int = null
|
|
@@ -1005,31 +707,8 @@ type ChoiceQuestion implements Question & Node {
|
|
|
1005
707
|
after: String = null
|
|
1006
708
|
first: Int = null
|
|
1007
709
|
last: Int = null
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
label: String = null
|
|
1011
|
-
isArchived: Boolean = null
|
|
1012
|
-
createdByUser: String = null
|
|
1013
|
-
createdByGroup: String = null
|
|
1014
|
-
modifiedByUser: String = null
|
|
1015
|
-
modifiedByGroup: String = null
|
|
1016
|
-
|
|
1017
|
-
"""
|
|
1018
|
-
Only return entries created after the given DateTime (Exclusive)
|
|
1019
|
-
"""
|
|
1020
|
-
createdBefore: DateTime = null
|
|
1021
|
-
|
|
1022
|
-
"""
|
|
1023
|
-
Only return entries created at or before the given DateTime (Inclusive)
|
|
1024
|
-
"""
|
|
1025
|
-
createdAfter: DateTime = null
|
|
1026
|
-
metaHasKey: String = null
|
|
1027
|
-
search: String = null
|
|
1028
|
-
|
|
1029
|
-
"""
|
|
1030
|
-
OptionOrdering
|
|
1031
|
-
"""
|
|
1032
|
-
orderBy: [OptionOrdering] = null
|
|
710
|
+
filter: [OptionFilterSetType] = null
|
|
711
|
+
order: [OptionOrderSetType] = null
|
|
1033
712
|
): OptionConnection
|
|
1034
713
|
|
|
1035
714
|
"""
|
|
@@ -1311,35 +990,8 @@ type DateQuestion implements Question & Node {
|
|
|
1311
990
|
after: String = null
|
|
1312
991
|
first: Int = null
|
|
1313
992
|
last: Int = null
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
description: String = null
|
|
1317
|
-
isPublished: Boolean = null
|
|
1318
|
-
isArchived: Boolean = null
|
|
1319
|
-
questions: [String] = null
|
|
1320
|
-
createdByUser: String = null
|
|
1321
|
-
createdByGroup: String = null
|
|
1322
|
-
modifiedByUser: String = null
|
|
1323
|
-
modifiedByGroup: String = null
|
|
1324
|
-
|
|
1325
|
-
"""
|
|
1326
|
-
Only return entries created after the given DateTime (Exclusive)
|
|
1327
|
-
"""
|
|
1328
|
-
createdBefore: DateTime = null
|
|
1329
|
-
|
|
1330
|
-
"""
|
|
1331
|
-
Only return entries created at or before the given DateTime (Inclusive)
|
|
1332
|
-
"""
|
|
1333
|
-
createdAfter: DateTime = null
|
|
1334
|
-
metaHasKey: String = null
|
|
1335
|
-
metaValue: [JSONValueFilterType] = null
|
|
1336
|
-
search: String = null
|
|
1337
|
-
|
|
1338
|
-
"""
|
|
1339
|
-
FormOrdering
|
|
1340
|
-
"""
|
|
1341
|
-
orderBy: [FormOrdering] = null
|
|
1342
|
-
slugs: [String] = null
|
|
993
|
+
filter: [FormFilterSetType] = null
|
|
994
|
+
order: [FormOrderSetType] = null
|
|
1343
995
|
): FormConnection
|
|
1344
996
|
|
|
1345
997
|
"""
|
|
@@ -1476,33 +1128,8 @@ type Document implements Node {
|
|
|
1476
1128
|
after: String = null
|
|
1477
1129
|
first: Int = null
|
|
1478
1130
|
last: Int = null
|
|
1479
|
-
metaValue: [JSONValueFilterType] = null
|
|
1480
|
-
question: ID = null
|
|
1481
|
-
search: String = null
|
|
1482
|
-
|
|
1483
|
-
"""
|
|
1484
|
-
AnswerOrdering
|
|
1485
|
-
"""
|
|
1486
|
-
orderBy: [AnswerOrdering] = null
|
|
1487
1131
|
filter: [AnswerFilterSetType] = null
|
|
1488
1132
|
order: [AnswerOrderSetType] = null
|
|
1489
|
-
createdByUser: String = null
|
|
1490
|
-
createdByGroup: String = null
|
|
1491
|
-
modifiedByUser: String = null
|
|
1492
|
-
modifiedByGroup: String = null
|
|
1493
|
-
|
|
1494
|
-
"""
|
|
1495
|
-
Only return entries created after the given DateTime (Exclusive)
|
|
1496
|
-
"""
|
|
1497
|
-
createdBefore: DateTime = null
|
|
1498
|
-
|
|
1499
|
-
"""
|
|
1500
|
-
Only return entries created at or before the given DateTime (Inclusive)
|
|
1501
|
-
"""
|
|
1502
|
-
createdAfter: DateTime = null
|
|
1503
|
-
metaHasKey: String = null
|
|
1504
|
-
questions: [ID] = null
|
|
1505
|
-
visibleInContext: Boolean = null
|
|
1506
1133
|
): AnswerConnection
|
|
1507
1134
|
case: Case
|
|
1508
1135
|
workItem: WorkItem
|
|
@@ -1552,78 +1179,12 @@ input DocumentFilterSetType {
|
|
|
1552
1179
|
createdAfter: DateTime
|
|
1553
1180
|
metaHasKey: String
|
|
1554
1181
|
metaValue: [JSONValueFilterType]
|
|
1555
|
-
orderBy: [DocumentOrdering]
|
|
1556
1182
|
rootDocument: ID
|
|
1557
1183
|
hasAnswer: [HasAnswerFilterType]
|
|
1558
1184
|
searchAnswers: [SearchAnswersFilterType]
|
|
1559
1185
|
invert: Boolean
|
|
1560
1186
|
}
|
|
1561
1187
|
|
|
1562
|
-
"""
|
|
1563
|
-
An enumeration.
|
|
1564
|
-
"""
|
|
1565
|
-
enum DocumentOrdering {
|
|
1566
|
-
"""
|
|
1567
|
-
Created at
|
|
1568
|
-
"""
|
|
1569
|
-
CREATED_AT_ASC
|
|
1570
|
-
|
|
1571
|
-
"""
|
|
1572
|
-
Created at (descending)
|
|
1573
|
-
"""
|
|
1574
|
-
CREATED_AT_DESC
|
|
1575
|
-
|
|
1576
|
-
"""
|
|
1577
|
-
Modified at
|
|
1578
|
-
"""
|
|
1579
|
-
MODIFIED_AT_ASC
|
|
1580
|
-
|
|
1581
|
-
"""
|
|
1582
|
-
Modified at (descending)
|
|
1583
|
-
"""
|
|
1584
|
-
MODIFIED_AT_DESC
|
|
1585
|
-
|
|
1586
|
-
"""
|
|
1587
|
-
Created by user
|
|
1588
|
-
"""
|
|
1589
|
-
CREATED_BY_USER_ASC
|
|
1590
|
-
|
|
1591
|
-
"""
|
|
1592
|
-
Created by user (descending)
|
|
1593
|
-
"""
|
|
1594
|
-
CREATED_BY_USER_DESC
|
|
1595
|
-
|
|
1596
|
-
"""
|
|
1597
|
-
Created by group
|
|
1598
|
-
"""
|
|
1599
|
-
CREATED_BY_GROUP_ASC
|
|
1600
|
-
|
|
1601
|
-
"""
|
|
1602
|
-
Created by group (descending)
|
|
1603
|
-
"""
|
|
1604
|
-
CREATED_BY_GROUP_DESC
|
|
1605
|
-
|
|
1606
|
-
"""
|
|
1607
|
-
Modified by user
|
|
1608
|
-
"""
|
|
1609
|
-
MODIFIED_BY_USER_ASC
|
|
1610
|
-
|
|
1611
|
-
"""
|
|
1612
|
-
Modified by user (descending)
|
|
1613
|
-
"""
|
|
1614
|
-
MODIFIED_BY_USER_DESC
|
|
1615
|
-
|
|
1616
|
-
"""
|
|
1617
|
-
Modified by group
|
|
1618
|
-
"""
|
|
1619
|
-
MODIFIED_BY_GROUP_ASC
|
|
1620
|
-
|
|
1621
|
-
"""
|
|
1622
|
-
Modified by group (descending)
|
|
1623
|
-
"""
|
|
1624
|
-
MODIFIED_BY_GROUP_DESC
|
|
1625
|
-
}
|
|
1626
|
-
|
|
1627
1188
|
input DocumentOrderSetType {
|
|
1628
1189
|
meta: String
|
|
1629
1190
|
answerValue: String
|
|
@@ -1685,35 +1246,8 @@ type DynamicChoiceQuestion implements Question & DynamicQuestion & Node {
|
|
|
1685
1246
|
after: String = null
|
|
1686
1247
|
first: Int = null
|
|
1687
1248
|
last: Int = null
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
description: String = null
|
|
1691
|
-
isPublished: Boolean = null
|
|
1692
|
-
isArchived: Boolean = null
|
|
1693
|
-
questions: [String] = null
|
|
1694
|
-
createdByUser: String = null
|
|
1695
|
-
createdByGroup: String = null
|
|
1696
|
-
modifiedByUser: String = null
|
|
1697
|
-
modifiedByGroup: String = null
|
|
1698
|
-
|
|
1699
|
-
"""
|
|
1700
|
-
Only return entries created after the given DateTime (Exclusive)
|
|
1701
|
-
"""
|
|
1702
|
-
createdBefore: DateTime = null
|
|
1703
|
-
|
|
1704
|
-
"""
|
|
1705
|
-
Only return entries created at or before the given DateTime (Inclusive)
|
|
1706
|
-
"""
|
|
1707
|
-
createdAfter: DateTime = null
|
|
1708
|
-
metaHasKey: String = null
|
|
1709
|
-
metaValue: [JSONValueFilterType] = null
|
|
1710
|
-
search: String = null
|
|
1711
|
-
|
|
1712
|
-
"""
|
|
1713
|
-
FormOrdering
|
|
1714
|
-
"""
|
|
1715
|
-
orderBy: [FormOrdering] = null
|
|
1716
|
-
slugs: [String] = null
|
|
1249
|
+
filter: [FormFilterSetType] = null
|
|
1250
|
+
order: [FormOrderSetType] = null
|
|
1717
1251
|
): FormConnection
|
|
1718
1252
|
options(
|
|
1719
1253
|
before: String = null
|
|
@@ -1755,35 +1289,8 @@ type DynamicMultipleChoiceQuestion implements Question & DynamicQuestion & Node
|
|
|
1755
1289
|
after: String = null
|
|
1756
1290
|
first: Int = null
|
|
1757
1291
|
last: Int = null
|
|
1758
|
-
|
|
1759
|
-
|
|
1760
|
-
description: String = null
|
|
1761
|
-
isPublished: Boolean = null
|
|
1762
|
-
isArchived: Boolean = null
|
|
1763
|
-
questions: [String] = null
|
|
1764
|
-
createdByUser: String = null
|
|
1765
|
-
createdByGroup: String = null
|
|
1766
|
-
modifiedByUser: String = null
|
|
1767
|
-
modifiedByGroup: String = null
|
|
1768
|
-
|
|
1769
|
-
"""
|
|
1770
|
-
Only return entries created after the given DateTime (Exclusive)
|
|
1771
|
-
"""
|
|
1772
|
-
createdBefore: DateTime = null
|
|
1773
|
-
|
|
1774
|
-
"""
|
|
1775
|
-
Only return entries created at or before the given DateTime (Inclusive)
|
|
1776
|
-
"""
|
|
1777
|
-
createdAfter: DateTime = null
|
|
1778
|
-
metaHasKey: String = null
|
|
1779
|
-
metaValue: [JSONValueFilterType] = null
|
|
1780
|
-
search: String = null
|
|
1781
|
-
|
|
1782
|
-
"""
|
|
1783
|
-
FormOrdering
|
|
1784
|
-
"""
|
|
1785
|
-
orderBy: [FormOrdering] = null
|
|
1786
|
-
slugs: [String] = null
|
|
1292
|
+
filter: [FormFilterSetType] = null
|
|
1293
|
+
order: [FormOrderSetType] = null
|
|
1787
1294
|
): FormConnection
|
|
1788
1295
|
options(
|
|
1789
1296
|
before: String = null
|
|
@@ -1851,6 +1358,12 @@ input DynamicOptionFilterSetType {
|
|
|
1851
1358
|
invert: Boolean
|
|
1852
1359
|
}
|
|
1853
1360
|
|
|
1361
|
+
input DynamicOptionOrderSetType {
|
|
1362
|
+
meta: String
|
|
1363
|
+
attribute: SortableDynamicOptionAttributes
|
|
1364
|
+
direction: AscDesc
|
|
1365
|
+
}
|
|
1366
|
+
|
|
1854
1367
|
interface DynamicQuestion {
|
|
1855
1368
|
options(
|
|
1856
1369
|
before: String = null
|
|
@@ -1925,35 +1438,8 @@ type FileQuestion implements Question & Node {
|
|
|
1925
1438
|
after: String = null
|
|
1926
1439
|
first: Int = null
|
|
1927
1440
|
last: Int = null
|
|
1928
|
-
|
|
1929
|
-
|
|
1930
|
-
description: String = null
|
|
1931
|
-
isPublished: Boolean = null
|
|
1932
|
-
isArchived: Boolean = null
|
|
1933
|
-
questions: [String] = null
|
|
1934
|
-
createdByUser: String = null
|
|
1935
|
-
createdByGroup: String = null
|
|
1936
|
-
modifiedByUser: String = null
|
|
1937
|
-
modifiedByGroup: String = null
|
|
1938
|
-
|
|
1939
|
-
"""
|
|
1940
|
-
Only return entries created after the given DateTime (Exclusive)
|
|
1941
|
-
"""
|
|
1942
|
-
createdBefore: DateTime = null
|
|
1943
|
-
|
|
1944
|
-
"""
|
|
1945
|
-
Only return entries created at or before the given DateTime (Inclusive)
|
|
1946
|
-
"""
|
|
1947
|
-
createdAfter: DateTime = null
|
|
1948
|
-
metaHasKey: String = null
|
|
1949
|
-
metaValue: [JSONValueFilterType] = null
|
|
1950
|
-
search: String = null
|
|
1951
|
-
|
|
1952
|
-
"""
|
|
1953
|
-
FormOrdering
|
|
1954
|
-
"""
|
|
1955
|
-
orderBy: [FormOrdering] = null
|
|
1956
|
-
slugs: [String] = null
|
|
1441
|
+
filter: [FormFilterSetType] = null
|
|
1442
|
+
order: [FormOrderSetType] = null
|
|
1957
1443
|
): FormConnection
|
|
1958
1444
|
|
|
1959
1445
|
"""
|
|
@@ -2007,36 +1493,9 @@ type FloatQuestion implements Question & Node {
|
|
|
2007
1493
|
after: String = null
|
|
2008
1494
|
first: Int = null
|
|
2009
1495
|
last: Int = null
|
|
2010
|
-
|
|
2011
|
-
|
|
2012
|
-
|
|
2013
|
-
isPublished: Boolean = null
|
|
2014
|
-
isArchived: Boolean = null
|
|
2015
|
-
questions: [String] = null
|
|
2016
|
-
createdByUser: String = null
|
|
2017
|
-
createdByGroup: String = null
|
|
2018
|
-
modifiedByUser: String = null
|
|
2019
|
-
modifiedByGroup: String = null
|
|
2020
|
-
|
|
2021
|
-
"""
|
|
2022
|
-
Only return entries created after the given DateTime (Exclusive)
|
|
2023
|
-
"""
|
|
2024
|
-
createdBefore: DateTime = null
|
|
2025
|
-
|
|
2026
|
-
"""
|
|
2027
|
-
Only return entries created at or before the given DateTime (Inclusive)
|
|
2028
|
-
"""
|
|
2029
|
-
createdAfter: DateTime = null
|
|
2030
|
-
metaHasKey: String = null
|
|
2031
|
-
metaValue: [JSONValueFilterType] = null
|
|
2032
|
-
search: String = null
|
|
2033
|
-
|
|
2034
|
-
"""
|
|
2035
|
-
FormOrdering
|
|
2036
|
-
"""
|
|
2037
|
-
orderBy: [FormOrdering] = null
|
|
2038
|
-
slugs: [String] = null
|
|
2039
|
-
): FormConnection
|
|
1496
|
+
filter: [FormFilterSetType] = null
|
|
1497
|
+
order: [FormOrderSetType] = null
|
|
1498
|
+
): FormConnection
|
|
2040
1499
|
|
|
2041
1500
|
"""
|
|
2042
1501
|
The ID of the object
|
|
@@ -2114,6 +1573,12 @@ Examples:
|
|
|
2114
1573
|
"""
|
|
2115
1574
|
scalar FlowJexl
|
|
2116
1575
|
|
|
1576
|
+
input FlowOrderSetType {
|
|
1577
|
+
meta: String
|
|
1578
|
+
attribute: SortableFlowAttributes
|
|
1579
|
+
direction: AscDesc
|
|
1580
|
+
}
|
|
1581
|
+
|
|
2117
1582
|
type Form implements Node {
|
|
2118
1583
|
createdAt: DateTime!
|
|
2119
1584
|
modifiedAt: DateTime!
|
|
@@ -2133,37 +1598,8 @@ type Form implements Node {
|
|
|
2133
1598
|
after: String = null
|
|
2134
1599
|
first: Int = null
|
|
2135
1600
|
last: Int = null
|
|
2136
|
-
|
|
2137
|
-
|
|
2138
|
-
label: String = null
|
|
2139
|
-
isRequired: String = null
|
|
2140
|
-
isHidden: String = null
|
|
2141
|
-
isArchived: Boolean = null
|
|
2142
|
-
subForm: ID = null
|
|
2143
|
-
rowForm: ID = null
|
|
2144
|
-
createdByUser: String = null
|
|
2145
|
-
createdByGroup: String = null
|
|
2146
|
-
modifiedByUser: String = null
|
|
2147
|
-
modifiedByGroup: String = null
|
|
2148
|
-
|
|
2149
|
-
"""
|
|
2150
|
-
Only return entries created after the given DateTime (Exclusive)
|
|
2151
|
-
"""
|
|
2152
|
-
createdBefore: DateTime = null
|
|
2153
|
-
|
|
2154
|
-
"""
|
|
2155
|
-
Only return entries created at or before the given DateTime (Inclusive)
|
|
2156
|
-
"""
|
|
2157
|
-
createdAfter: DateTime = null
|
|
2158
|
-
metaHasKey: String = null
|
|
2159
|
-
excludeForms: [ID] = null
|
|
2160
|
-
search: String = null
|
|
2161
|
-
|
|
2162
|
-
"""
|
|
2163
|
-
QuestionOrdering
|
|
2164
|
-
"""
|
|
2165
|
-
orderBy: [QuestionOrdering] = null
|
|
2166
|
-
slugs: [String] = null
|
|
1601
|
+
filter: [QuestionFilterSetType] = null
|
|
1602
|
+
order: [QuestionOrderSetType] = null
|
|
2167
1603
|
): QuestionConnection
|
|
2168
1604
|
|
|
2169
1605
|
"""
|
|
@@ -2248,8 +1684,6 @@ type FormEdge {
|
|
|
2248
1684
|
}
|
|
2249
1685
|
|
|
2250
1686
|
input FormFilterSetType {
|
|
2251
|
-
orderBy: [FormOrdering]
|
|
2252
|
-
slug: String
|
|
2253
1687
|
name: String
|
|
2254
1688
|
description: String
|
|
2255
1689
|
isPublished: Boolean
|
|
@@ -2268,81 +1702,6 @@ input FormFilterSetType {
|
|
|
2268
1702
|
invert: Boolean
|
|
2269
1703
|
}
|
|
2270
1704
|
|
|
2271
|
-
"""
|
|
2272
|
-
An enumeration.
|
|
2273
|
-
"""
|
|
2274
|
-
enum FormOrdering {
|
|
2275
|
-
"""
|
|
2276
|
-
Name
|
|
2277
|
-
"""
|
|
2278
|
-
NAME_ASC
|
|
2279
|
-
|
|
2280
|
-
"""
|
|
2281
|
-
Name (descending)
|
|
2282
|
-
"""
|
|
2283
|
-
NAME_DESC
|
|
2284
|
-
|
|
2285
|
-
"""
|
|
2286
|
-
Created at
|
|
2287
|
-
"""
|
|
2288
|
-
CREATED_AT_ASC
|
|
2289
|
-
|
|
2290
|
-
"""
|
|
2291
|
-
Created at (descending)
|
|
2292
|
-
"""
|
|
2293
|
-
CREATED_AT_DESC
|
|
2294
|
-
|
|
2295
|
-
"""
|
|
2296
|
-
Modified at
|
|
2297
|
-
"""
|
|
2298
|
-
MODIFIED_AT_ASC
|
|
2299
|
-
|
|
2300
|
-
"""
|
|
2301
|
-
Modified at (descending)
|
|
2302
|
-
"""
|
|
2303
|
-
MODIFIED_AT_DESC
|
|
2304
|
-
|
|
2305
|
-
"""
|
|
2306
|
-
Created by user
|
|
2307
|
-
"""
|
|
2308
|
-
CREATED_BY_USER_ASC
|
|
2309
|
-
|
|
2310
|
-
"""
|
|
2311
|
-
Created by user (descending)
|
|
2312
|
-
"""
|
|
2313
|
-
CREATED_BY_USER_DESC
|
|
2314
|
-
|
|
2315
|
-
"""
|
|
2316
|
-
Created by group
|
|
2317
|
-
"""
|
|
2318
|
-
CREATED_BY_GROUP_ASC
|
|
2319
|
-
|
|
2320
|
-
"""
|
|
2321
|
-
Created by group (descending)
|
|
2322
|
-
"""
|
|
2323
|
-
CREATED_BY_GROUP_DESC
|
|
2324
|
-
|
|
2325
|
-
"""
|
|
2326
|
-
Modified by user
|
|
2327
|
-
"""
|
|
2328
|
-
MODIFIED_BY_USER_ASC
|
|
2329
|
-
|
|
2330
|
-
"""
|
|
2331
|
-
Modified by user (descending)
|
|
2332
|
-
"""
|
|
2333
|
-
MODIFIED_BY_USER_DESC
|
|
2334
|
-
|
|
2335
|
-
"""
|
|
2336
|
-
Modified by group
|
|
2337
|
-
"""
|
|
2338
|
-
MODIFIED_BY_GROUP_ASC
|
|
2339
|
-
|
|
2340
|
-
"""
|
|
2341
|
-
Modified by group (descending)
|
|
2342
|
-
"""
|
|
2343
|
-
MODIFIED_BY_GROUP_DESC
|
|
2344
|
-
}
|
|
2345
|
-
|
|
2346
1705
|
input FormOrderSetType {
|
|
2347
1706
|
meta: String
|
|
2348
1707
|
attribute: SortableFormAttributes
|
|
@@ -2374,35 +1733,8 @@ type FormQuestion implements Question & Node {
|
|
|
2374
1733
|
after: String = null
|
|
2375
1734
|
first: Int = null
|
|
2376
1735
|
last: Int = null
|
|
2377
|
-
|
|
2378
|
-
|
|
2379
|
-
description: String = null
|
|
2380
|
-
isPublished: Boolean = null
|
|
2381
|
-
isArchived: Boolean = null
|
|
2382
|
-
questions: [String] = null
|
|
2383
|
-
createdByUser: String = null
|
|
2384
|
-
createdByGroup: String = null
|
|
2385
|
-
modifiedByUser: String = null
|
|
2386
|
-
modifiedByGroup: String = null
|
|
2387
|
-
|
|
2388
|
-
"""
|
|
2389
|
-
Only return entries created after the given DateTime (Exclusive)
|
|
2390
|
-
"""
|
|
2391
|
-
createdBefore: DateTime = null
|
|
2392
|
-
|
|
2393
|
-
"""
|
|
2394
|
-
Only return entries created at or before the given DateTime (Inclusive)
|
|
2395
|
-
"""
|
|
2396
|
-
createdAfter: DateTime = null
|
|
2397
|
-
metaHasKey: String = null
|
|
2398
|
-
metaValue: [JSONValueFilterType] = null
|
|
2399
|
-
search: String = null
|
|
2400
|
-
|
|
2401
|
-
"""
|
|
2402
|
-
FormOrdering
|
|
2403
|
-
"""
|
|
2404
|
-
orderBy: [FormOrdering] = null
|
|
2405
|
-
slugs: [String] = null
|
|
1736
|
+
filter: [FormFilterSetType] = null
|
|
1737
|
+
order: [FormOrderSetType] = null
|
|
2406
1738
|
): FormConnection
|
|
2407
1739
|
|
|
2408
1740
|
"""
|
|
@@ -2491,35 +1823,8 @@ type IntegerQuestion implements Question & Node {
|
|
|
2491
1823
|
after: String = null
|
|
2492
1824
|
first: Int = null
|
|
2493
1825
|
last: Int = null
|
|
2494
|
-
|
|
2495
|
-
|
|
2496
|
-
description: String = null
|
|
2497
|
-
isPublished: Boolean = null
|
|
2498
|
-
isArchived: Boolean = null
|
|
2499
|
-
questions: [String] = null
|
|
2500
|
-
createdByUser: String = null
|
|
2501
|
-
createdByGroup: String = null
|
|
2502
|
-
modifiedByUser: String = null
|
|
2503
|
-
modifiedByGroup: String = null
|
|
2504
|
-
|
|
2505
|
-
"""
|
|
2506
|
-
Only return entries created after the given DateTime (Exclusive)
|
|
2507
|
-
"""
|
|
2508
|
-
createdBefore: DateTime = null
|
|
2509
|
-
|
|
2510
|
-
"""
|
|
2511
|
-
Only return entries created at or before the given DateTime (Inclusive)
|
|
2512
|
-
"""
|
|
2513
|
-
createdAfter: DateTime = null
|
|
2514
|
-
metaHasKey: String = null
|
|
2515
|
-
metaValue: [JSONValueFilterType] = null
|
|
2516
|
-
search: String = null
|
|
2517
|
-
|
|
2518
|
-
"""
|
|
2519
|
-
FormOrdering
|
|
2520
|
-
"""
|
|
2521
|
-
orderBy: [FormOrdering] = null
|
|
2522
|
-
slugs: [String] = null
|
|
1826
|
+
filter: [FormFilterSetType] = null
|
|
1827
|
+
order: [FormOrderSetType] = null
|
|
2523
1828
|
): FormConnection
|
|
2524
1829
|
|
|
2525
1830
|
"""
|
|
@@ -2606,35 +1911,8 @@ type MultipleChoiceQuestion implements Question & Node {
|
|
|
2606
1911
|
after: String = null
|
|
2607
1912
|
first: Int = null
|
|
2608
1913
|
last: Int = null
|
|
2609
|
-
|
|
2610
|
-
|
|
2611
|
-
description: String = null
|
|
2612
|
-
isPublished: Boolean = null
|
|
2613
|
-
isArchived: Boolean = null
|
|
2614
|
-
questions: [String] = null
|
|
2615
|
-
createdByUser: String = null
|
|
2616
|
-
createdByGroup: String = null
|
|
2617
|
-
modifiedByUser: String = null
|
|
2618
|
-
modifiedByGroup: String = null
|
|
2619
|
-
|
|
2620
|
-
"""
|
|
2621
|
-
Only return entries created after the given DateTime (Exclusive)
|
|
2622
|
-
"""
|
|
2623
|
-
createdBefore: DateTime = null
|
|
2624
|
-
|
|
2625
|
-
"""
|
|
2626
|
-
Only return entries created at or before the given DateTime (Inclusive)
|
|
2627
|
-
"""
|
|
2628
|
-
createdAfter: DateTime = null
|
|
2629
|
-
metaHasKey: String = null
|
|
2630
|
-
metaValue: [JSONValueFilterType] = null
|
|
2631
|
-
search: String = null
|
|
2632
|
-
|
|
2633
|
-
"""
|
|
2634
|
-
FormOrdering
|
|
2635
|
-
"""
|
|
2636
|
-
orderBy: [FormOrdering] = null
|
|
2637
|
-
slugs: [String] = null
|
|
1914
|
+
filter: [FormFilterSetType] = null
|
|
1915
|
+
order: [FormOrderSetType] = null
|
|
2638
1916
|
): FormConnection
|
|
2639
1917
|
options(
|
|
2640
1918
|
offset: Int = null
|
|
@@ -2642,31 +1920,8 @@ type MultipleChoiceQuestion implements Question & Node {
|
|
|
2642
1920
|
after: String = null
|
|
2643
1921
|
first: Int = null
|
|
2644
1922
|
last: Int = null
|
|
2645
|
-
|
|
2646
|
-
|
|
2647
|
-
"""
|
|
2648
|
-
OptionOrdering
|
|
2649
|
-
"""
|
|
2650
|
-
orderBy: [OptionOrdering] = null
|
|
2651
|
-
slug: String = null
|
|
2652
|
-
label: String = null
|
|
2653
|
-
isArchived: Boolean = null
|
|
2654
|
-
createdByUser: String = null
|
|
2655
|
-
createdByGroup: String = null
|
|
2656
|
-
modifiedByUser: String = null
|
|
2657
|
-
modifiedByGroup: String = null
|
|
2658
|
-
|
|
2659
|
-
"""
|
|
2660
|
-
Only return entries created after the given DateTime (Exclusive)
|
|
2661
|
-
"""
|
|
2662
|
-
createdBefore: DateTime = null
|
|
2663
|
-
|
|
2664
|
-
"""
|
|
2665
|
-
Only return entries created at or before the given DateTime (Inclusive)
|
|
2666
|
-
"""
|
|
2667
|
-
createdAfter: DateTime = null
|
|
2668
|
-
metaHasKey: String = null
|
|
2669
|
-
search: String = null
|
|
1923
|
+
filter: [OptionFilterSetType] = null
|
|
1924
|
+
order: [OptionOrderSetType] = null
|
|
2670
1925
|
): OptionConnection
|
|
2671
1926
|
staticContent: String
|
|
2672
1927
|
|
|
@@ -2862,79 +2117,26 @@ type OptionEdge {
|
|
|
2862
2117
|
cursor: String!
|
|
2863
2118
|
}
|
|
2864
2119
|
|
|
2865
|
-
|
|
2866
|
-
|
|
2867
|
-
|
|
2868
|
-
|
|
2869
|
-
|
|
2870
|
-
|
|
2871
|
-
|
|
2872
|
-
|
|
2873
|
-
|
|
2874
|
-
|
|
2875
|
-
|
|
2876
|
-
|
|
2877
|
-
|
|
2878
|
-
|
|
2879
|
-
|
|
2880
|
-
Created at
|
|
2881
|
-
"""
|
|
2882
|
-
CREATED_AT_ASC
|
|
2883
|
-
|
|
2884
|
-
"""
|
|
2885
|
-
Created at (descending)
|
|
2886
|
-
"""
|
|
2887
|
-
CREATED_AT_DESC
|
|
2888
|
-
|
|
2889
|
-
"""
|
|
2890
|
-
Modified at
|
|
2891
|
-
"""
|
|
2892
|
-
MODIFIED_AT_ASC
|
|
2893
|
-
|
|
2894
|
-
"""
|
|
2895
|
-
Modified at (descending)
|
|
2896
|
-
"""
|
|
2897
|
-
MODIFIED_AT_DESC
|
|
2898
|
-
|
|
2899
|
-
"""
|
|
2900
|
-
Created by user
|
|
2901
|
-
"""
|
|
2902
|
-
CREATED_BY_USER_ASC
|
|
2903
|
-
|
|
2904
|
-
"""
|
|
2905
|
-
Created by user (descending)
|
|
2906
|
-
"""
|
|
2907
|
-
CREATED_BY_USER_DESC
|
|
2908
|
-
|
|
2909
|
-
"""
|
|
2910
|
-
Created by group
|
|
2911
|
-
"""
|
|
2912
|
-
CREATED_BY_GROUP_ASC
|
|
2913
|
-
|
|
2914
|
-
"""
|
|
2915
|
-
Created by group (descending)
|
|
2916
|
-
"""
|
|
2917
|
-
CREATED_BY_GROUP_DESC
|
|
2918
|
-
|
|
2919
|
-
"""
|
|
2920
|
-
Modified by user
|
|
2921
|
-
"""
|
|
2922
|
-
MODIFIED_BY_USER_ASC
|
|
2923
|
-
|
|
2924
|
-
"""
|
|
2925
|
-
Modified by user (descending)
|
|
2926
|
-
"""
|
|
2927
|
-
MODIFIED_BY_USER_DESC
|
|
2928
|
-
|
|
2929
|
-
"""
|
|
2930
|
-
Modified by group
|
|
2931
|
-
"""
|
|
2932
|
-
MODIFIED_BY_GROUP_ASC
|
|
2120
|
+
input OptionFilterSetType {
|
|
2121
|
+
slug: String
|
|
2122
|
+
label: String
|
|
2123
|
+
isArchived: Boolean
|
|
2124
|
+
createdByUser: String
|
|
2125
|
+
createdByGroup: String
|
|
2126
|
+
modifiedByUser: String
|
|
2127
|
+
modifiedByGroup: String
|
|
2128
|
+
createdBefore: DateTime
|
|
2129
|
+
createdAfter: DateTime
|
|
2130
|
+
metaHasKey: String
|
|
2131
|
+
metaValue: [JSONValueFilterType]
|
|
2132
|
+
search: String
|
|
2133
|
+
invert: Boolean
|
|
2134
|
+
}
|
|
2933
2135
|
|
|
2934
|
-
|
|
2935
|
-
|
|
2936
|
-
|
|
2937
|
-
|
|
2136
|
+
input OptionOrderSetType {
|
|
2137
|
+
meta: String
|
|
2138
|
+
attribute: SortableOptionAttributes
|
|
2139
|
+
direction: AscDesc
|
|
2938
2140
|
}
|
|
2939
2141
|
|
|
2940
2142
|
"""
|
|
@@ -2969,28 +2171,8 @@ type Query {
|
|
|
2969
2171
|
after: String = null
|
|
2970
2172
|
first: Int = null
|
|
2971
2173
|
last: Int = null
|
|
2972
|
-
metaValue: [JSONValueFilterType] = null
|
|
2973
|
-
slug: String = null
|
|
2974
|
-
name: String = null
|
|
2975
2174
|
filter: [AnalyticsTableFilterSetType] = null
|
|
2976
2175
|
order: [AnalyticsTableOrderSetType] = null
|
|
2977
|
-
createdByUser: String = null
|
|
2978
|
-
createdByGroup: String = null
|
|
2979
|
-
modifiedByUser: String = null
|
|
2980
|
-
modifiedByGroup: String = null
|
|
2981
|
-
|
|
2982
|
-
"""
|
|
2983
|
-
Only return entries created after the given DateTime (Exclusive)
|
|
2984
|
-
"""
|
|
2985
|
-
createdBefore: DateTime = null
|
|
2986
|
-
|
|
2987
|
-
"""
|
|
2988
|
-
Only return entries created at or before the given DateTime (Inclusive)
|
|
2989
|
-
"""
|
|
2990
|
-
createdAfter: DateTime = null
|
|
2991
|
-
metaHasKey: String = null
|
|
2992
|
-
search: String = null
|
|
2993
|
-
slugs: [String] = null
|
|
2994
2176
|
): AnalyticsTableConnection
|
|
2995
2177
|
analyticsTable(slug: String!): AnalyticsTable
|
|
2996
2178
|
allAnalyticsFields(
|
|
@@ -2999,27 +2181,8 @@ type Query {
|
|
|
2999
2181
|
after: String = null
|
|
3000
2182
|
first: Int = null
|
|
3001
2183
|
last: Int = null
|
|
3002
|
-
metaValue: [JSONValueFilterType] = null
|
|
3003
|
-
alias: String = null
|
|
3004
|
-
table: ID = null
|
|
3005
2184
|
filter: [AnalyticsFieldFilterSetType] = null
|
|
3006
|
-
|
|
3007
|
-
createdByGroup: String = null
|
|
3008
|
-
modifiedByUser: String = null
|
|
3009
|
-
modifiedByGroup: String = null
|
|
3010
|
-
|
|
3011
|
-
"""
|
|
3012
|
-
Only return entries created after the given DateTime (Exclusive)
|
|
3013
|
-
"""
|
|
3014
|
-
createdBefore: DateTime = null
|
|
3015
|
-
|
|
3016
|
-
"""
|
|
3017
|
-
Only return entries created at or before the given DateTime (Inclusive)
|
|
3018
|
-
"""
|
|
3019
|
-
createdAfter: DateTime = null
|
|
3020
|
-
metaHasKey: String = null
|
|
3021
|
-
search: String = null
|
|
3022
|
-
slugs: [String] = null
|
|
2185
|
+
order: [AnalyticsFieldOrderSetType] = null
|
|
3023
2186
|
): AnalyticsFieldConnection
|
|
3024
2187
|
allDataSources(
|
|
3025
2188
|
before: String = null
|
|
@@ -3040,35 +2203,8 @@ type Query {
|
|
|
3040
2203
|
after: String = null
|
|
3041
2204
|
first: Int = null
|
|
3042
2205
|
last: Int = null
|
|
3043
|
-
metaValue: [JSONValueFilterType] = null
|
|
3044
|
-
slug: String = null
|
|
3045
|
-
name: String = null
|
|
3046
|
-
description: String = null
|
|
3047
|
-
isPublished: Boolean = null
|
|
3048
|
-
isArchived: Boolean = null
|
|
3049
|
-
|
|
3050
|
-
"""
|
|
3051
|
-
WorkflowOrdering
|
|
3052
|
-
"""
|
|
3053
|
-
orderBy: [WorkflowOrdering] = null
|
|
3054
2206
|
filter: [WorkflowFilterSetType] = null
|
|
3055
2207
|
order: [WorkflowOrderSetType] = null
|
|
3056
|
-
createdByUser: String = null
|
|
3057
|
-
createdByGroup: String = null
|
|
3058
|
-
modifiedByUser: String = null
|
|
3059
|
-
modifiedByGroup: String = null
|
|
3060
|
-
|
|
3061
|
-
"""
|
|
3062
|
-
Only return entries created after the given DateTime (Exclusive)
|
|
3063
|
-
"""
|
|
3064
|
-
createdBefore: DateTime = null
|
|
3065
|
-
|
|
3066
|
-
"""
|
|
3067
|
-
Only return entries created at or before the given DateTime (Inclusive)
|
|
3068
|
-
"""
|
|
3069
|
-
createdAfter: DateTime = null
|
|
3070
|
-
metaHasKey: String = null
|
|
3071
|
-
search: String = null
|
|
3072
2208
|
): WorkflowConnection
|
|
3073
2209
|
allTasks(
|
|
3074
2210
|
offset: Int = null
|
|
@@ -3076,35 +2212,8 @@ type Query {
|
|
|
3076
2212
|
after: String = null
|
|
3077
2213
|
first: Int = null
|
|
3078
2214
|
last: Int = null
|
|
3079
|
-
metaValue: [JSONValueFilterType] = null
|
|
3080
|
-
slug: String = null
|
|
3081
|
-
name: String = null
|
|
3082
|
-
description: String = null
|
|
3083
|
-
type: TaskTypeArgument = null
|
|
3084
|
-
isArchived: Boolean = null
|
|
3085
|
-
|
|
3086
|
-
"""
|
|
3087
|
-
TaskOrdering
|
|
3088
|
-
"""
|
|
3089
|
-
orderBy: [TaskOrdering] = null
|
|
3090
2215
|
filter: [TaskFilterSetType] = null
|
|
3091
2216
|
order: [TaskOrderSetType] = null
|
|
3092
|
-
createdByUser: String = null
|
|
3093
|
-
createdByGroup: String = null
|
|
3094
|
-
modifiedByUser: String = null
|
|
3095
|
-
modifiedByGroup: String = null
|
|
3096
|
-
|
|
3097
|
-
"""
|
|
3098
|
-
Only return entries created after the given DateTime (Exclusive)
|
|
3099
|
-
"""
|
|
3100
|
-
createdBefore: DateTime = null
|
|
3101
|
-
|
|
3102
|
-
"""
|
|
3103
|
-
Only return entries created at or before the given DateTime (Inclusive)
|
|
3104
|
-
"""
|
|
3105
|
-
createdAfter: DateTime = null
|
|
3106
|
-
metaHasKey: String = null
|
|
3107
|
-
search: String = null
|
|
3108
2217
|
): TaskConnection
|
|
3109
2218
|
allCases(
|
|
3110
2219
|
offset: Int = null
|
|
@@ -3112,47 +2221,8 @@ type Query {
|
|
|
3112
2221
|
after: String = null
|
|
3113
2222
|
first: Int = null
|
|
3114
2223
|
last: Int = null
|
|
3115
|
-
metaValue: [JSONValueFilterType] = null
|
|
3116
|
-
workflow: ID = null
|
|
3117
|
-
|
|
3118
|
-
"""
|
|
3119
|
-
CaseOrdering
|
|
3120
|
-
"""
|
|
3121
|
-
orderBy: [CaseOrdering] = null
|
|
3122
2224
|
filter: [CaseFilterSetType] = null
|
|
3123
2225
|
order: [CaseOrderSetType] = null
|
|
3124
|
-
createdByUser: String = null
|
|
3125
|
-
createdByGroup: String = null
|
|
3126
|
-
modifiedByUser: String = null
|
|
3127
|
-
modifiedByGroup: String = null
|
|
3128
|
-
|
|
3129
|
-
"""
|
|
3130
|
-
Only return entries created after the given DateTime (Exclusive)
|
|
3131
|
-
"""
|
|
3132
|
-
createdBefore: DateTime = null
|
|
3133
|
-
|
|
3134
|
-
"""
|
|
3135
|
-
Only return entries created at or before the given DateTime (Inclusive)
|
|
3136
|
-
"""
|
|
3137
|
-
createdAfter: DateTime = null
|
|
3138
|
-
metaHasKey: String = null
|
|
3139
|
-
id: ID = null
|
|
3140
|
-
documentForm: String = null
|
|
3141
|
-
documentForms: [String] = null
|
|
3142
|
-
hasAnswer: [HasAnswerFilterType] = null
|
|
3143
|
-
workItemDocumentHasAnswer: [HasAnswerFilterType] = null
|
|
3144
|
-
rootCase: ID = null
|
|
3145
|
-
searchAnswers: [SearchAnswersFilterType] = null
|
|
3146
|
-
status: [[CaseStatusArgument]] = null
|
|
3147
|
-
|
|
3148
|
-
"""
|
|
3149
|
-
Expects a question slug. If the slug is prefixed with a hyphen, the order will be reversed
|
|
3150
|
-
|
|
3151
|
-
For file questions, the filename is used for sorting.
|
|
3152
|
-
|
|
3153
|
-
Table questions are not supported at this time.
|
|
3154
|
-
"""
|
|
3155
|
-
orderByQuestionAnswerValue: String = null
|
|
3156
2226
|
): CaseConnection
|
|
3157
2227
|
allWorkItems(
|
|
3158
2228
|
offset: Int = null
|
|
@@ -3160,48 +2230,8 @@ type Query {
|
|
|
3160
2230
|
after: String = null
|
|
3161
2231
|
first: Int = null
|
|
3162
2232
|
last: Int = null
|
|
3163
|
-
metaValue: [JSONValueFilterType] = null
|
|
3164
|
-
status: WorkItemStatusArgument = null
|
|
3165
|
-
|
|
3166
|
-
"""
|
|
3167
|
-
WorkItemOrdering
|
|
3168
|
-
"""
|
|
3169
|
-
orderBy: [WorkItemOrdering] = null
|
|
3170
2233
|
filter: [WorkItemFilterSetType] = null
|
|
3171
2234
|
order: [WorkItemOrderSetType] = null
|
|
3172
|
-
documentHasAnswer: [HasAnswerFilterType] = null
|
|
3173
|
-
caseDocumentHasAnswer: [HasAnswerFilterType] = null
|
|
3174
|
-
caseMetaValue: [JSONValueFilterType] = null
|
|
3175
|
-
rootCaseMetaValue: [JSONValueFilterType] = null
|
|
3176
|
-
name: String = null
|
|
3177
|
-
task: ID = null
|
|
3178
|
-
tasks: [String] = null
|
|
3179
|
-
case: ID = null
|
|
3180
|
-
createdAt: DateTime = null
|
|
3181
|
-
closedAt: DateTime = null
|
|
3182
|
-
modifiedAt: DateTime = null
|
|
3183
|
-
deadline: DateTime = null
|
|
3184
|
-
hasDeadline: Boolean = null
|
|
3185
|
-
caseFamily: ID = null
|
|
3186
|
-
createdByUser: String = null
|
|
3187
|
-
createdByGroup: String = null
|
|
3188
|
-
modifiedByUser: String = null
|
|
3189
|
-
modifiedByGroup: String = null
|
|
3190
|
-
|
|
3191
|
-
"""
|
|
3192
|
-
Only return entries created after the given DateTime (Exclusive)
|
|
3193
|
-
"""
|
|
3194
|
-
createdBefore: DateTime = null
|
|
3195
|
-
|
|
3196
|
-
"""
|
|
3197
|
-
Only return entries created at or before the given DateTime (Inclusive)
|
|
3198
|
-
"""
|
|
3199
|
-
createdAfter: DateTime = null
|
|
3200
|
-
metaHasKey: String = null
|
|
3201
|
-
id: ID = null
|
|
3202
|
-
addressedGroups: [String] = null
|
|
3203
|
-
controllingGroups: [String] = null
|
|
3204
|
-
assignedUsers: [String] = null
|
|
3205
2235
|
): WorkItemConnection
|
|
3206
2236
|
allForms(
|
|
3207
2237
|
offset: Int = null
|
|
@@ -3209,37 +2239,8 @@ type Query {
|
|
|
3209
2239
|
after: String = null
|
|
3210
2240
|
first: Int = null
|
|
3211
2241
|
last: Int = null
|
|
3212
|
-
metaValue: [JSONValueFilterType] = null
|
|
3213
|
-
|
|
3214
|
-
"""
|
|
3215
|
-
FormOrdering
|
|
3216
|
-
"""
|
|
3217
|
-
orderBy: [FormOrdering] = null
|
|
3218
|
-
slug: String = null
|
|
3219
|
-
name: String = null
|
|
3220
|
-
description: String = null
|
|
3221
|
-
isPublished: Boolean = null
|
|
3222
|
-
isArchived: Boolean = null
|
|
3223
|
-
questions: [String] = null
|
|
3224
2242
|
filter: [FormFilterSetType] = null
|
|
3225
2243
|
order: [FormOrderSetType] = null
|
|
3226
|
-
createdByUser: String = null
|
|
3227
|
-
createdByGroup: String = null
|
|
3228
|
-
modifiedByUser: String = null
|
|
3229
|
-
modifiedByGroup: String = null
|
|
3230
|
-
|
|
3231
|
-
"""
|
|
3232
|
-
Only return entries created after the given DateTime (Exclusive)
|
|
3233
|
-
"""
|
|
3234
|
-
createdBefore: DateTime = null
|
|
3235
|
-
|
|
3236
|
-
"""
|
|
3237
|
-
Only return entries created at or before the given DateTime (Inclusive)
|
|
3238
|
-
"""
|
|
3239
|
-
createdAfter: DateTime = null
|
|
3240
|
-
metaHasKey: String = null
|
|
3241
|
-
search: String = null
|
|
3242
|
-
slugs: [String] = null
|
|
3243
2244
|
): FormConnection
|
|
3244
2245
|
allQuestions(
|
|
3245
2246
|
offset: Int = null
|
|
@@ -3247,39 +2248,8 @@ type Query {
|
|
|
3247
2248
|
after: String = null
|
|
3248
2249
|
first: Int = null
|
|
3249
2250
|
last: Int = null
|
|
3250
|
-
metaValue: [JSONValueFilterType] = null
|
|
3251
|
-
|
|
3252
|
-
"""
|
|
3253
|
-
QuestionOrdering
|
|
3254
|
-
"""
|
|
3255
|
-
orderBy: [QuestionOrdering] = null
|
|
3256
|
-
slug: String = null
|
|
3257
|
-
label: String = null
|
|
3258
|
-
isRequired: String = null
|
|
3259
|
-
isHidden: String = null
|
|
3260
|
-
isArchived: Boolean = null
|
|
3261
|
-
subForm: ID = null
|
|
3262
|
-
rowForm: ID = null
|
|
3263
2251
|
filter: [QuestionFilterSetType] = null
|
|
3264
2252
|
order: [QuestionOrderSetType] = null
|
|
3265
|
-
createdByUser: String = null
|
|
3266
|
-
createdByGroup: String = null
|
|
3267
|
-
modifiedByUser: String = null
|
|
3268
|
-
modifiedByGroup: String = null
|
|
3269
|
-
|
|
3270
|
-
"""
|
|
3271
|
-
Only return entries created after the given DateTime (Exclusive)
|
|
3272
|
-
"""
|
|
3273
|
-
createdBefore: DateTime = null
|
|
3274
|
-
|
|
3275
|
-
"""
|
|
3276
|
-
Only return entries created at or before the given DateTime (Inclusive)
|
|
3277
|
-
"""
|
|
3278
|
-
createdAfter: DateTime = null
|
|
3279
|
-
metaHasKey: String = null
|
|
3280
|
-
excludeForms: [ID] = null
|
|
3281
|
-
search: String = null
|
|
3282
|
-
slugs: [String] = null
|
|
3283
2253
|
): QuestionConnection
|
|
3284
2254
|
allDocuments(
|
|
3285
2255
|
offset: Int = null
|
|
@@ -3287,36 +2257,8 @@ type Query {
|
|
|
3287
2257
|
after: String = null
|
|
3288
2258
|
first: Int = null
|
|
3289
2259
|
last: Int = null
|
|
3290
|
-
metaValue: [JSONValueFilterType] = null
|
|
3291
|
-
form: ID = null
|
|
3292
|
-
forms: [ID] = null
|
|
3293
|
-
search: String = null
|
|
3294
|
-
id: ID = null
|
|
3295
|
-
|
|
3296
|
-
"""
|
|
3297
|
-
DocumentOrdering
|
|
3298
|
-
"""
|
|
3299
|
-
orderBy: [DocumentOrdering] = null
|
|
3300
2260
|
filter: [DocumentFilterSetType] = null
|
|
3301
2261
|
order: [DocumentOrderSetType] = null
|
|
3302
|
-
createdByUser: String = null
|
|
3303
|
-
createdByGroup: String = null
|
|
3304
|
-
modifiedByUser: String = null
|
|
3305
|
-
modifiedByGroup: String = null
|
|
3306
|
-
|
|
3307
|
-
"""
|
|
3308
|
-
Only return entries created after the given DateTime (Exclusive)
|
|
3309
|
-
"""
|
|
3310
|
-
createdBefore: DateTime = null
|
|
3311
|
-
|
|
3312
|
-
"""
|
|
3313
|
-
Only return entries created at or before the given DateTime (Inclusive)
|
|
3314
|
-
"""
|
|
3315
|
-
createdAfter: DateTime = null
|
|
3316
|
-
metaHasKey: String = null
|
|
3317
|
-
rootDocument: ID = null
|
|
3318
|
-
hasAnswer: [HasAnswerFilterType] = null
|
|
3319
|
-
searchAnswers: [SearchAnswersFilterType] = null
|
|
3320
2262
|
): DocumentConnection
|
|
3321
2263
|
allFormatValidators(
|
|
3322
2264
|
before: String = null
|
|
@@ -3330,23 +2272,8 @@ type Query {
|
|
|
3330
2272
|
after: String = null
|
|
3331
2273
|
first: Int = null
|
|
3332
2274
|
last: Int = null
|
|
3333
|
-
question: ID = null
|
|
3334
|
-
document: ID = null
|
|
3335
2275
|
filter: [DynamicOptionFilterSetType] = null
|
|
3336
|
-
|
|
3337
|
-
createdByGroup: String = null
|
|
3338
|
-
modifiedByUser: String = null
|
|
3339
|
-
modifiedByGroup: String = null
|
|
3340
|
-
|
|
3341
|
-
"""
|
|
3342
|
-
Only return entries created after the given DateTime (Exclusive)
|
|
3343
|
-
"""
|
|
3344
|
-
createdBefore: DateTime = null
|
|
3345
|
-
|
|
3346
|
-
"""
|
|
3347
|
-
Only return entries created at or before the given DateTime (Inclusive)
|
|
3348
|
-
"""
|
|
3349
|
-
createdAfter: DateTime = null
|
|
2276
|
+
order: [DynamicOptionOrderSetType] = null
|
|
3350
2277
|
): DynamicOptionConnection
|
|
3351
2278
|
documentValidity(
|
|
3352
2279
|
id: ID!
|
|
@@ -3389,35 +2316,8 @@ interface Question {
|
|
|
3389
2316
|
after: String = null
|
|
3390
2317
|
first: Int = null
|
|
3391
2318
|
last: Int = null
|
|
3392
|
-
|
|
3393
|
-
|
|
3394
|
-
description: String = null
|
|
3395
|
-
isPublished: Boolean = null
|
|
3396
|
-
isArchived: Boolean = null
|
|
3397
|
-
questions: [String] = null
|
|
3398
|
-
createdByUser: String = null
|
|
3399
|
-
createdByGroup: String = null
|
|
3400
|
-
modifiedByUser: String = null
|
|
3401
|
-
modifiedByGroup: String = null
|
|
3402
|
-
|
|
3403
|
-
"""
|
|
3404
|
-
Only return entries created after the given DateTime (Exclusive)
|
|
3405
|
-
"""
|
|
3406
|
-
createdBefore: DateTime = null
|
|
3407
|
-
|
|
3408
|
-
"""
|
|
3409
|
-
Only return entries created at or before the given DateTime (Inclusive)
|
|
3410
|
-
"""
|
|
3411
|
-
createdAfter: DateTime = null
|
|
3412
|
-
metaHasKey: String = null
|
|
3413
|
-
metaValue: [JSONValueFilterType] = null
|
|
3414
|
-
search: String = null
|
|
3415
|
-
|
|
3416
|
-
"""
|
|
3417
|
-
FormOrdering
|
|
3418
|
-
"""
|
|
3419
|
-
orderBy: [FormOrdering] = null
|
|
3420
|
-
slugs: [String] = null
|
|
2319
|
+
filter: [FormFilterSetType] = null
|
|
2320
|
+
order: [FormOrderSetType] = null
|
|
3421
2321
|
): FormConnection
|
|
3422
2322
|
source: Question
|
|
3423
2323
|
}
|
|
@@ -3451,8 +2351,6 @@ type QuestionEdge {
|
|
|
3451
2351
|
}
|
|
3452
2352
|
|
|
3453
2353
|
input QuestionFilterSetType {
|
|
3454
|
-
orderBy: [QuestionOrdering]
|
|
3455
|
-
slug: String
|
|
3456
2354
|
label: String
|
|
3457
2355
|
isRequired: String
|
|
3458
2356
|
isHidden: String
|
|
@@ -3492,81 +2390,6 @@ Examples:
|
|
|
3492
2390
|
"""
|
|
3493
2391
|
scalar QuestionJexl
|
|
3494
2392
|
|
|
3495
|
-
"""
|
|
3496
|
-
An enumeration.
|
|
3497
|
-
"""
|
|
3498
|
-
enum QuestionOrdering {
|
|
3499
|
-
"""
|
|
3500
|
-
Label
|
|
3501
|
-
"""
|
|
3502
|
-
LABEL_ASC
|
|
3503
|
-
|
|
3504
|
-
"""
|
|
3505
|
-
Label (descending)
|
|
3506
|
-
"""
|
|
3507
|
-
LABEL_DESC
|
|
3508
|
-
|
|
3509
|
-
"""
|
|
3510
|
-
Created at
|
|
3511
|
-
"""
|
|
3512
|
-
CREATED_AT_ASC
|
|
3513
|
-
|
|
3514
|
-
"""
|
|
3515
|
-
Created at (descending)
|
|
3516
|
-
"""
|
|
3517
|
-
CREATED_AT_DESC
|
|
3518
|
-
|
|
3519
|
-
"""
|
|
3520
|
-
Modified at
|
|
3521
|
-
"""
|
|
3522
|
-
MODIFIED_AT_ASC
|
|
3523
|
-
|
|
3524
|
-
"""
|
|
3525
|
-
Modified at (descending)
|
|
3526
|
-
"""
|
|
3527
|
-
MODIFIED_AT_DESC
|
|
3528
|
-
|
|
3529
|
-
"""
|
|
3530
|
-
Created by user
|
|
3531
|
-
"""
|
|
3532
|
-
CREATED_BY_USER_ASC
|
|
3533
|
-
|
|
3534
|
-
"""
|
|
3535
|
-
Created by user (descending)
|
|
3536
|
-
"""
|
|
3537
|
-
CREATED_BY_USER_DESC
|
|
3538
|
-
|
|
3539
|
-
"""
|
|
3540
|
-
Created by group
|
|
3541
|
-
"""
|
|
3542
|
-
CREATED_BY_GROUP_ASC
|
|
3543
|
-
|
|
3544
|
-
"""
|
|
3545
|
-
Created by group (descending)
|
|
3546
|
-
"""
|
|
3547
|
-
CREATED_BY_GROUP_DESC
|
|
3548
|
-
|
|
3549
|
-
"""
|
|
3550
|
-
Modified by user
|
|
3551
|
-
"""
|
|
3552
|
-
MODIFIED_BY_USER_ASC
|
|
3553
|
-
|
|
3554
|
-
"""
|
|
3555
|
-
Modified by user (descending)
|
|
3556
|
-
"""
|
|
3557
|
-
MODIFIED_BY_USER_DESC
|
|
3558
|
-
|
|
3559
|
-
"""
|
|
3560
|
-
Modified by group
|
|
3561
|
-
"""
|
|
3562
|
-
MODIFIED_BY_GROUP_ASC
|
|
3563
|
-
|
|
3564
|
-
"""
|
|
3565
|
-
Modified by group (descending)
|
|
3566
|
-
"""
|
|
3567
|
-
MODIFIED_BY_GROUP_DESC
|
|
3568
|
-
}
|
|
3569
|
-
|
|
3570
2393
|
input QuestionOrderSetType {
|
|
3571
2394
|
meta: String
|
|
3572
2395
|
attribute: SortableQuestionAttributes
|
|
@@ -4541,13 +3364,15 @@ type SkipWorkItemPayload {
|
|
|
4541
3364
|
clientMutationId: String
|
|
4542
3365
|
}
|
|
4543
3366
|
|
|
3367
|
+
enum SortableAnalyticsFieldAttributes {
|
|
3368
|
+
CREATED_AT
|
|
3369
|
+
MODIFIED_AT
|
|
3370
|
+
ALIAS
|
|
3371
|
+
}
|
|
3372
|
+
|
|
4544
3373
|
enum SortableAnalyticsTableAttributes {
|
|
4545
3374
|
CREATED_AT
|
|
4546
3375
|
MODIFIED_AT
|
|
4547
|
-
CREATED_BY_USER
|
|
4548
|
-
CREATED_BY_GROUP
|
|
4549
|
-
MODIFIED_BY_USER
|
|
4550
|
-
MODIFIED_BY_GROUP
|
|
4551
3376
|
SLUG
|
|
4552
3377
|
NAME
|
|
4553
3378
|
}
|
|
@@ -4555,21 +3380,15 @@ enum SortableAnalyticsTableAttributes {
|
|
|
4555
3380
|
enum SortableAnswerAttributes {
|
|
4556
3381
|
CREATED_AT
|
|
4557
3382
|
MODIFIED_AT
|
|
4558
|
-
CREATED_BY_USER
|
|
4559
|
-
CREATED_BY_GROUP
|
|
4560
|
-
MODIFIED_BY_USER
|
|
4561
|
-
MODIFIED_BY_GROUP
|
|
4562
3383
|
QUESTION
|
|
4563
3384
|
VALUE
|
|
4564
|
-
DOCUMENT
|
|
4565
3385
|
DATE
|
|
4566
|
-
FILE
|
|
4567
3386
|
}
|
|
4568
3387
|
|
|
4569
3388
|
enum SortableCaseAttributes {
|
|
3389
|
+
CREATED_AT
|
|
3390
|
+
MODIFIED_AT
|
|
4570
3391
|
ALLOW_ALL_FORMS
|
|
4571
|
-
CREATED_BY_GROUP
|
|
4572
|
-
CREATED_BY_USER
|
|
4573
3392
|
DESCRIPTION
|
|
4574
3393
|
IS_ARCHIVED
|
|
4575
3394
|
IS_PUBLISHED
|
|
@@ -4581,21 +3400,26 @@ enum SortableCaseAttributes {
|
|
|
4581
3400
|
enum SortableDocumentAttributes {
|
|
4582
3401
|
CREATED_AT
|
|
4583
3402
|
MODIFIED_AT
|
|
4584
|
-
CREATED_BY_USER
|
|
4585
|
-
CREATED_BY_GROUP
|
|
4586
|
-
MODIFIED_BY_USER
|
|
4587
|
-
MODIFIED_BY_GROUP
|
|
4588
3403
|
FORM
|
|
4589
|
-
|
|
3404
|
+
}
|
|
3405
|
+
|
|
3406
|
+
enum SortableDynamicOptionAttributes {
|
|
3407
|
+
CREATED_AT
|
|
3408
|
+
MODIFIED_AT
|
|
3409
|
+
SLUG
|
|
3410
|
+
LABEL
|
|
3411
|
+
QUESTION
|
|
3412
|
+
}
|
|
3413
|
+
|
|
3414
|
+
enum SortableFlowAttributes {
|
|
3415
|
+
CREATED_AT
|
|
3416
|
+
MODIFIED_AT
|
|
3417
|
+
TASK
|
|
4590
3418
|
}
|
|
4591
3419
|
|
|
4592
3420
|
enum SortableFormAttributes {
|
|
4593
3421
|
CREATED_AT
|
|
4594
3422
|
MODIFIED_AT
|
|
4595
|
-
CREATED_BY_USER
|
|
4596
|
-
CREATED_BY_GROUP
|
|
4597
|
-
MODIFIED_BY_USER
|
|
4598
|
-
MODIFIED_BY_GROUP
|
|
4599
3423
|
SLUG
|
|
4600
3424
|
NAME
|
|
4601
3425
|
DESCRIPTION
|
|
@@ -4603,13 +3427,17 @@ enum SortableFormAttributes {
|
|
|
4603
3427
|
IS_ARCHIVED
|
|
4604
3428
|
}
|
|
4605
3429
|
|
|
3430
|
+
enum SortableOptionAttributes {
|
|
3431
|
+
CREATED_AT
|
|
3432
|
+
MODIFIED_AT
|
|
3433
|
+
SLUG
|
|
3434
|
+
LABEL
|
|
3435
|
+
IS_ARCHIVED
|
|
3436
|
+
}
|
|
3437
|
+
|
|
4606
3438
|
enum SortableQuestionAttributes {
|
|
4607
3439
|
CREATED_AT
|
|
4608
3440
|
MODIFIED_AT
|
|
4609
|
-
CREATED_BY_USER
|
|
4610
|
-
CREATED_BY_GROUP
|
|
4611
|
-
MODIFIED_BY_USER
|
|
4612
|
-
MODIFIED_BY_GROUP
|
|
4613
3441
|
SLUG
|
|
4614
3442
|
LABEL
|
|
4615
3443
|
TYPE
|
|
@@ -4623,11 +3451,11 @@ enum SortableQuestionAttributes {
|
|
|
4623
3451
|
}
|
|
4624
3452
|
|
|
4625
3453
|
enum SortableTaskAttributes {
|
|
3454
|
+
CREATED_AT
|
|
3455
|
+
MODIFIED_AT
|
|
4626
3456
|
ALLOW_ALL_FORMS
|
|
4627
3457
|
LEAD_TIME
|
|
4628
3458
|
TYPE
|
|
4629
|
-
CREATED_BY_GROUP
|
|
4630
|
-
CREATED_BY_USER
|
|
4631
3459
|
DESCRIPTION
|
|
4632
3460
|
IS_ARCHIVED
|
|
4633
3461
|
IS_PUBLISHED
|
|
@@ -4636,9 +3464,9 @@ enum SortableTaskAttributes {
|
|
|
4636
3464
|
}
|
|
4637
3465
|
|
|
4638
3466
|
enum SortableWorkflowAttributes {
|
|
3467
|
+
CREATED_AT
|
|
3468
|
+
MODIFIED_AT
|
|
4639
3469
|
ALLOW_ALL_FORMS
|
|
4640
|
-
CREATED_BY_GROUP
|
|
4641
|
-
CREATED_BY_USER
|
|
4642
3470
|
DESCRIPTION
|
|
4643
3471
|
IS_ARCHIVED
|
|
4644
3472
|
IS_PUBLISHED
|
|
@@ -4647,13 +3475,11 @@ enum SortableWorkflowAttributes {
|
|
|
4647
3475
|
}
|
|
4648
3476
|
|
|
4649
3477
|
enum SortableWorkItemAttributes {
|
|
4650
|
-
ALLOW_ALL_FORMS
|
|
4651
|
-
CREATED_BY_GROUP
|
|
4652
|
-
CREATED_BY_USER
|
|
4653
|
-
DESCRIPTION
|
|
4654
3478
|
CREATED_AT
|
|
4655
3479
|
MODIFIED_AT
|
|
4656
3480
|
CLOSED_AT
|
|
3481
|
+
ALLOW_ALL_FORMS
|
|
3482
|
+
DESCRIPTION
|
|
4657
3483
|
IS_ARCHIVED
|
|
4658
3484
|
IS_PUBLISHED
|
|
4659
3485
|
NAME
|
|
@@ -4715,35 +3541,8 @@ type StaticQuestion implements Question & Node {
|
|
|
4715
3541
|
after: String = null
|
|
4716
3542
|
first: Int = null
|
|
4717
3543
|
last: Int = null
|
|
4718
|
-
|
|
4719
|
-
|
|
4720
|
-
description: String = null
|
|
4721
|
-
isPublished: Boolean = null
|
|
4722
|
-
isArchived: Boolean = null
|
|
4723
|
-
questions: [String] = null
|
|
4724
|
-
createdByUser: String = null
|
|
4725
|
-
createdByGroup: String = null
|
|
4726
|
-
modifiedByUser: String = null
|
|
4727
|
-
modifiedByGroup: String = null
|
|
4728
|
-
|
|
4729
|
-
"""
|
|
4730
|
-
Only return entries created after the given DateTime (Exclusive)
|
|
4731
|
-
"""
|
|
4732
|
-
createdBefore: DateTime = null
|
|
4733
|
-
|
|
4734
|
-
"""
|
|
4735
|
-
Only return entries created at or before the given DateTime (Inclusive)
|
|
4736
|
-
"""
|
|
4737
|
-
createdAfter: DateTime = null
|
|
4738
|
-
metaHasKey: String = null
|
|
4739
|
-
metaValue: [JSONValueFilterType] = null
|
|
4740
|
-
search: String = null
|
|
4741
|
-
|
|
4742
|
-
"""
|
|
4743
|
-
FormOrdering
|
|
4744
|
-
"""
|
|
4745
|
-
orderBy: [FormOrdering] = null
|
|
4746
|
-
slugs: [String] = null
|
|
3544
|
+
filter: [FormFilterSetType] = null
|
|
3545
|
+
order: [FormOrderSetType] = null
|
|
4747
3546
|
): FormConnection
|
|
4748
3547
|
staticContent: String
|
|
4749
3548
|
dataSource: String
|
|
@@ -4882,35 +3681,8 @@ type TableQuestion implements Question & Node {
|
|
|
4882
3681
|
after: String = null
|
|
4883
3682
|
first: Int = null
|
|
4884
3683
|
last: Int = null
|
|
4885
|
-
|
|
4886
|
-
|
|
4887
|
-
description: String = null
|
|
4888
|
-
isPublished: Boolean = null
|
|
4889
|
-
isArchived: Boolean = null
|
|
4890
|
-
questions: [String] = null
|
|
4891
|
-
createdByUser: String = null
|
|
4892
|
-
createdByGroup: String = null
|
|
4893
|
-
modifiedByUser: String = null
|
|
4894
|
-
modifiedByGroup: String = null
|
|
4895
|
-
|
|
4896
|
-
"""
|
|
4897
|
-
Only return entries created after the given DateTime (Exclusive)
|
|
4898
|
-
"""
|
|
4899
|
-
createdBefore: DateTime = null
|
|
4900
|
-
|
|
4901
|
-
"""
|
|
4902
|
-
Only return entries created at or before the given DateTime (Inclusive)
|
|
4903
|
-
"""
|
|
4904
|
-
createdAfter: DateTime = null
|
|
4905
|
-
metaHasKey: String = null
|
|
4906
|
-
metaValue: [JSONValueFilterType] = null
|
|
4907
|
-
search: String = null
|
|
4908
|
-
|
|
4909
|
-
"""
|
|
4910
|
-
FormOrdering
|
|
4911
|
-
"""
|
|
4912
|
-
orderBy: [FormOrdering] = null
|
|
4913
|
-
slugs: [String] = null
|
|
3684
|
+
filter: [FormFilterSetType] = null
|
|
3685
|
+
order: [FormOrderSetType] = null
|
|
4914
3686
|
): FormConnection
|
|
4915
3687
|
|
|
4916
3688
|
"""
|
|
@@ -4984,131 +3756,15 @@ input TaskFilterSetType {
|
|
|
4984
3756
|
metaHasKey: String
|
|
4985
3757
|
metaValue: [JSONValueFilterType]
|
|
4986
3758
|
search: String
|
|
4987
|
-
orderBy: [TaskOrdering]
|
|
4988
3759
|
invert: Boolean
|
|
4989
3760
|
}
|
|
4990
3761
|
|
|
4991
|
-
"""
|
|
4992
|
-
An enumeration.
|
|
4993
|
-
"""
|
|
4994
|
-
enum TaskOrdering {
|
|
4995
|
-
"""
|
|
4996
|
-
Name
|
|
4997
|
-
"""
|
|
4998
|
-
NAME_ASC
|
|
4999
|
-
|
|
5000
|
-
"""
|
|
5001
|
-
Name (descending)
|
|
5002
|
-
"""
|
|
5003
|
-
NAME_DESC
|
|
5004
|
-
|
|
5005
|
-
"""
|
|
5006
|
-
Description
|
|
5007
|
-
"""
|
|
5008
|
-
DESCRIPTION_ASC
|
|
5009
|
-
|
|
5010
|
-
"""
|
|
5011
|
-
Description (descending)
|
|
5012
|
-
"""
|
|
5013
|
-
DESCRIPTION_DESC
|
|
5014
|
-
|
|
5015
|
-
"""
|
|
5016
|
-
Type
|
|
5017
|
-
"""
|
|
5018
|
-
TYPE_ASC
|
|
5019
|
-
|
|
5020
|
-
"""
|
|
5021
|
-
Type (descending)
|
|
5022
|
-
"""
|
|
5023
|
-
TYPE_DESC
|
|
5024
|
-
|
|
5025
|
-
"""
|
|
5026
|
-
Created at
|
|
5027
|
-
"""
|
|
5028
|
-
CREATED_AT_ASC
|
|
5029
|
-
|
|
5030
|
-
"""
|
|
5031
|
-
Created at (descending)
|
|
5032
|
-
"""
|
|
5033
|
-
CREATED_AT_DESC
|
|
5034
|
-
|
|
5035
|
-
"""
|
|
5036
|
-
Modified at
|
|
5037
|
-
"""
|
|
5038
|
-
MODIFIED_AT_ASC
|
|
5039
|
-
|
|
5040
|
-
"""
|
|
5041
|
-
Modified at (descending)
|
|
5042
|
-
"""
|
|
5043
|
-
MODIFIED_AT_DESC
|
|
5044
|
-
|
|
5045
|
-
"""
|
|
5046
|
-
Created by user
|
|
5047
|
-
"""
|
|
5048
|
-
CREATED_BY_USER_ASC
|
|
5049
|
-
|
|
5050
|
-
"""
|
|
5051
|
-
Created by user (descending)
|
|
5052
|
-
"""
|
|
5053
|
-
CREATED_BY_USER_DESC
|
|
5054
|
-
|
|
5055
|
-
"""
|
|
5056
|
-
Created by group
|
|
5057
|
-
"""
|
|
5058
|
-
CREATED_BY_GROUP_ASC
|
|
5059
|
-
|
|
5060
|
-
"""
|
|
5061
|
-
Created by group (descending)
|
|
5062
|
-
"""
|
|
5063
|
-
CREATED_BY_GROUP_DESC
|
|
5064
|
-
|
|
5065
|
-
"""
|
|
5066
|
-
Modified by user
|
|
5067
|
-
"""
|
|
5068
|
-
MODIFIED_BY_USER_ASC
|
|
5069
|
-
|
|
5070
|
-
"""
|
|
5071
|
-
Modified by user (descending)
|
|
5072
|
-
"""
|
|
5073
|
-
MODIFIED_BY_USER_DESC
|
|
5074
|
-
|
|
5075
|
-
"""
|
|
5076
|
-
Modified by group
|
|
5077
|
-
"""
|
|
5078
|
-
MODIFIED_BY_GROUP_ASC
|
|
5079
|
-
|
|
5080
|
-
"""
|
|
5081
|
-
Modified by group (descending)
|
|
5082
|
-
"""
|
|
5083
|
-
MODIFIED_BY_GROUP_DESC
|
|
5084
|
-
}
|
|
5085
|
-
|
|
5086
3762
|
input TaskOrderSetType {
|
|
5087
3763
|
meta: String
|
|
5088
3764
|
attribute: SortableTaskAttributes
|
|
5089
3765
|
direction: AscDesc
|
|
5090
3766
|
}
|
|
5091
3767
|
|
|
5092
|
-
"""
|
|
5093
|
-
An enumeration.
|
|
5094
|
-
"""
|
|
5095
|
-
enum TaskTypeArgument {
|
|
5096
|
-
"""
|
|
5097
|
-
Task which can simply be marked as completed.
|
|
5098
|
-
"""
|
|
5099
|
-
SIMPLE
|
|
5100
|
-
|
|
5101
|
-
"""
|
|
5102
|
-
Task to complete a defined workflow form.
|
|
5103
|
-
"""
|
|
5104
|
-
COMPLETE_WORKFLOW_FORM
|
|
5105
|
-
|
|
5106
|
-
"""
|
|
5107
|
-
Task to complete a defined task form.
|
|
5108
|
-
"""
|
|
5109
|
-
COMPLETE_TASK_FORM
|
|
5110
|
-
}
|
|
5111
|
-
|
|
5112
3768
|
type TextareaQuestion implements Question & Node {
|
|
5113
3769
|
createdAt: DateTime!
|
|
5114
3770
|
modifiedAt: DateTime!
|
|
@@ -5143,35 +3799,8 @@ type TextareaQuestion implements Question & Node {
|
|
|
5143
3799
|
after: String = null
|
|
5144
3800
|
first: Int = null
|
|
5145
3801
|
last: Int = null
|
|
5146
|
-
|
|
5147
|
-
|
|
5148
|
-
description: String = null
|
|
5149
|
-
isPublished: Boolean = null
|
|
5150
|
-
isArchived: Boolean = null
|
|
5151
|
-
questions: [String] = null
|
|
5152
|
-
createdByUser: String = null
|
|
5153
|
-
createdByGroup: String = null
|
|
5154
|
-
modifiedByUser: String = null
|
|
5155
|
-
modifiedByGroup: String = null
|
|
5156
|
-
|
|
5157
|
-
"""
|
|
5158
|
-
Only return entries created after the given DateTime (Exclusive)
|
|
5159
|
-
"""
|
|
5160
|
-
createdBefore: DateTime = null
|
|
5161
|
-
|
|
5162
|
-
"""
|
|
5163
|
-
Only return entries created at or before the given DateTime (Inclusive)
|
|
5164
|
-
"""
|
|
5165
|
-
createdAfter: DateTime = null
|
|
5166
|
-
metaHasKey: String = null
|
|
5167
|
-
metaValue: [JSONValueFilterType] = null
|
|
5168
|
-
search: String = null
|
|
5169
|
-
|
|
5170
|
-
"""
|
|
5171
|
-
FormOrdering
|
|
5172
|
-
"""
|
|
5173
|
-
orderBy: [FormOrdering] = null
|
|
5174
|
-
slugs: [String] = null
|
|
3802
|
+
filter: [FormFilterSetType] = null
|
|
3803
|
+
order: [FormOrderSetType] = null
|
|
5175
3804
|
): FormConnection
|
|
5176
3805
|
|
|
5177
3806
|
"""
|
|
@@ -5216,35 +3845,8 @@ type TextQuestion implements Question & Node {
|
|
|
5216
3845
|
after: String = null
|
|
5217
3846
|
first: Int = null
|
|
5218
3847
|
last: Int = null
|
|
5219
|
-
|
|
5220
|
-
|
|
5221
|
-
description: String = null
|
|
5222
|
-
isPublished: Boolean = null
|
|
5223
|
-
isArchived: Boolean = null
|
|
5224
|
-
questions: [String] = null
|
|
5225
|
-
createdByUser: String = null
|
|
5226
|
-
createdByGroup: String = null
|
|
5227
|
-
modifiedByUser: String = null
|
|
5228
|
-
modifiedByGroup: String = null
|
|
5229
|
-
|
|
5230
|
-
"""
|
|
5231
|
-
Only return entries created after the given DateTime (Exclusive)
|
|
5232
|
-
"""
|
|
5233
|
-
createdBefore: DateTime = null
|
|
5234
|
-
|
|
5235
|
-
"""
|
|
5236
|
-
Only return entries created at or before the given DateTime (Inclusive)
|
|
5237
|
-
"""
|
|
5238
|
-
createdAfter: DateTime = null
|
|
5239
|
-
metaHasKey: String = null
|
|
5240
|
-
metaValue: [JSONValueFilterType] = null
|
|
5241
|
-
search: String = null
|
|
5242
|
-
|
|
5243
|
-
"""
|
|
5244
|
-
FormOrdering
|
|
5245
|
-
"""
|
|
5246
|
-
orderBy: [FormOrdering] = null
|
|
5247
|
-
slugs: [String] = null
|
|
3848
|
+
filter: [FormFilterSetType] = null
|
|
3849
|
+
order: [FormOrderSetType] = null
|
|
5248
3850
|
): FormConnection
|
|
5249
3851
|
|
|
5250
3852
|
"""
|
|
@@ -5332,22 +3934,8 @@ type Workflow implements Node {
|
|
|
5332
3934
|
after: String = null
|
|
5333
3935
|
first: Int = null
|
|
5334
3936
|
last: Int = null
|
|
5335
|
-
task: ID = null
|
|
5336
3937
|
filter: [FlowFilterSetType] = null
|
|
5337
|
-
|
|
5338
|
-
createdByGroup: String = null
|
|
5339
|
-
modifiedByUser: String = null
|
|
5340
|
-
modifiedByGroup: String = null
|
|
5341
|
-
|
|
5342
|
-
"""
|
|
5343
|
-
Only return entries created after the given DateTime (Exclusive)
|
|
5344
|
-
"""
|
|
5345
|
-
createdBefore: DateTime = null
|
|
5346
|
-
|
|
5347
|
-
"""
|
|
5348
|
-
Only return entries created at or before the given DateTime (Inclusive)
|
|
5349
|
-
"""
|
|
5350
|
-
createdAfter: DateTime = null
|
|
3938
|
+
order: [FlowOrderSetType] = null
|
|
5351
3939
|
): FlowConnection
|
|
5352
3940
|
}
|
|
5353
3941
|
|
|
@@ -5394,95 +3982,9 @@ input WorkflowFilterSetType {
|
|
|
5394
3982
|
metaHasKey: String
|
|
5395
3983
|
metaValue: [JSONValueFilterType]
|
|
5396
3984
|
search: String
|
|
5397
|
-
orderBy: [WorkflowOrdering]
|
|
5398
3985
|
invert: Boolean
|
|
5399
3986
|
}
|
|
5400
3987
|
|
|
5401
|
-
"""
|
|
5402
|
-
An enumeration.
|
|
5403
|
-
"""
|
|
5404
|
-
enum WorkflowOrdering {
|
|
5405
|
-
"""
|
|
5406
|
-
Name
|
|
5407
|
-
"""
|
|
5408
|
-
NAME_ASC
|
|
5409
|
-
|
|
5410
|
-
"""
|
|
5411
|
-
Name (descending)
|
|
5412
|
-
"""
|
|
5413
|
-
NAME_DESC
|
|
5414
|
-
|
|
5415
|
-
"""
|
|
5416
|
-
Description
|
|
5417
|
-
"""
|
|
5418
|
-
DESCRIPTION_ASC
|
|
5419
|
-
|
|
5420
|
-
"""
|
|
5421
|
-
Description (descending)
|
|
5422
|
-
"""
|
|
5423
|
-
DESCRIPTION_DESC
|
|
5424
|
-
|
|
5425
|
-
"""
|
|
5426
|
-
Created at
|
|
5427
|
-
"""
|
|
5428
|
-
CREATED_AT_ASC
|
|
5429
|
-
|
|
5430
|
-
"""
|
|
5431
|
-
Created at (descending)
|
|
5432
|
-
"""
|
|
5433
|
-
CREATED_AT_DESC
|
|
5434
|
-
|
|
5435
|
-
"""
|
|
5436
|
-
Modified at
|
|
5437
|
-
"""
|
|
5438
|
-
MODIFIED_AT_ASC
|
|
5439
|
-
|
|
5440
|
-
"""
|
|
5441
|
-
Modified at (descending)
|
|
5442
|
-
"""
|
|
5443
|
-
MODIFIED_AT_DESC
|
|
5444
|
-
|
|
5445
|
-
"""
|
|
5446
|
-
Created by user
|
|
5447
|
-
"""
|
|
5448
|
-
CREATED_BY_USER_ASC
|
|
5449
|
-
|
|
5450
|
-
"""
|
|
5451
|
-
Created by user (descending)
|
|
5452
|
-
"""
|
|
5453
|
-
CREATED_BY_USER_DESC
|
|
5454
|
-
|
|
5455
|
-
"""
|
|
5456
|
-
Created by group
|
|
5457
|
-
"""
|
|
5458
|
-
CREATED_BY_GROUP_ASC
|
|
5459
|
-
|
|
5460
|
-
"""
|
|
5461
|
-
Created by group (descending)
|
|
5462
|
-
"""
|
|
5463
|
-
CREATED_BY_GROUP_DESC
|
|
5464
|
-
|
|
5465
|
-
"""
|
|
5466
|
-
Modified by user
|
|
5467
|
-
"""
|
|
5468
|
-
MODIFIED_BY_USER_ASC
|
|
5469
|
-
|
|
5470
|
-
"""
|
|
5471
|
-
Modified by user (descending)
|
|
5472
|
-
"""
|
|
5473
|
-
MODIFIED_BY_USER_DESC
|
|
5474
|
-
|
|
5475
|
-
"""
|
|
5476
|
-
Modified by group
|
|
5477
|
-
"""
|
|
5478
|
-
MODIFIED_BY_GROUP_ASC
|
|
5479
|
-
|
|
5480
|
-
"""
|
|
5481
|
-
Modified by group (descending)
|
|
5482
|
-
"""
|
|
5483
|
-
MODIFIED_BY_GROUP_DESC
|
|
5484
|
-
}
|
|
5485
|
-
|
|
5486
3988
|
input WorkflowOrderSetType {
|
|
5487
3989
|
meta: String
|
|
5488
3990
|
attribute: SortableWorkflowAttributes
|
|
@@ -5591,7 +4093,6 @@ input WorkItemFilterSetType {
|
|
|
5591
4093
|
metaHasKey: String
|
|
5592
4094
|
metaValue: [JSONValueFilterType]
|
|
5593
4095
|
id: ID
|
|
5594
|
-
orderBy: [WorkItemOrdering]
|
|
5595
4096
|
addressedGroups: [String]
|
|
5596
4097
|
controllingGroups: [String]
|
|
5597
4098
|
assignedUsers: [String]
|
|
@@ -5602,91 +4103,6 @@ input WorkItemFilterSetType {
|
|
|
5602
4103
|
invert: Boolean
|
|
5603
4104
|
}
|
|
5604
4105
|
|
|
5605
|
-
"""
|
|
5606
|
-
An enumeration.
|
|
5607
|
-
"""
|
|
5608
|
-
enum WorkItemOrdering {
|
|
5609
|
-
"""
|
|
5610
|
-
Status
|
|
5611
|
-
"""
|
|
5612
|
-
STATUS_ASC
|
|
5613
|
-
|
|
5614
|
-
"""
|
|
5615
|
-
Status (descending)
|
|
5616
|
-
"""
|
|
5617
|
-
STATUS_DESC
|
|
5618
|
-
|
|
5619
|
-
"""
|
|
5620
|
-
Deadline
|
|
5621
|
-
"""
|
|
5622
|
-
DEADLINE_ASC
|
|
5623
|
-
|
|
5624
|
-
"""
|
|
5625
|
-
Deadline (descending)
|
|
5626
|
-
"""
|
|
5627
|
-
DEADLINE_DESC
|
|
5628
|
-
|
|
5629
|
-
"""
|
|
5630
|
-
Created at
|
|
5631
|
-
"""
|
|
5632
|
-
CREATED_AT_ASC
|
|
5633
|
-
|
|
5634
|
-
"""
|
|
5635
|
-
Created at (descending)
|
|
5636
|
-
"""
|
|
5637
|
-
CREATED_AT_DESC
|
|
5638
|
-
|
|
5639
|
-
"""
|
|
5640
|
-
Modified at
|
|
5641
|
-
"""
|
|
5642
|
-
MODIFIED_AT_ASC
|
|
5643
|
-
|
|
5644
|
-
"""
|
|
5645
|
-
Modified at (descending)
|
|
5646
|
-
"""
|
|
5647
|
-
MODIFIED_AT_DESC
|
|
5648
|
-
|
|
5649
|
-
"""
|
|
5650
|
-
Created by user
|
|
5651
|
-
"""
|
|
5652
|
-
CREATED_BY_USER_ASC
|
|
5653
|
-
|
|
5654
|
-
"""
|
|
5655
|
-
Created by user (descending)
|
|
5656
|
-
"""
|
|
5657
|
-
CREATED_BY_USER_DESC
|
|
5658
|
-
|
|
5659
|
-
"""
|
|
5660
|
-
Created by group
|
|
5661
|
-
"""
|
|
5662
|
-
CREATED_BY_GROUP_ASC
|
|
5663
|
-
|
|
5664
|
-
"""
|
|
5665
|
-
Created by group (descending)
|
|
5666
|
-
"""
|
|
5667
|
-
CREATED_BY_GROUP_DESC
|
|
5668
|
-
|
|
5669
|
-
"""
|
|
5670
|
-
Modified by user
|
|
5671
|
-
"""
|
|
5672
|
-
MODIFIED_BY_USER_ASC
|
|
5673
|
-
|
|
5674
|
-
"""
|
|
5675
|
-
Modified by user (descending)
|
|
5676
|
-
"""
|
|
5677
|
-
MODIFIED_BY_USER_DESC
|
|
5678
|
-
|
|
5679
|
-
"""
|
|
5680
|
-
Modified by group
|
|
5681
|
-
"""
|
|
5682
|
-
MODIFIED_BY_GROUP_ASC
|
|
5683
|
-
|
|
5684
|
-
"""
|
|
5685
|
-
Modified by group (descending)
|
|
5686
|
-
"""
|
|
5687
|
-
MODIFIED_BY_GROUP_DESC
|
|
5688
|
-
}
|
|
5689
|
-
|
|
5690
4106
|
input WorkItemOrderSetType {
|
|
5691
4107
|
meta: String
|
|
5692
4108
|
caseMeta: String
|
|
@@ -5707,38 +4123,3 @@ enum WorkItemStatus {
|
|
|
5707
4123
|
SUSPENDED
|
|
5708
4124
|
REDO
|
|
5709
4125
|
}
|
|
5710
|
-
|
|
5711
|
-
"""
|
|
5712
|
-
An enumeration.
|
|
5713
|
-
"""
|
|
5714
|
-
enum WorkItemStatusArgument {
|
|
5715
|
-
"""
|
|
5716
|
-
Work item is ready to be processed.
|
|
5717
|
-
"""
|
|
5718
|
-
READY
|
|
5719
|
-
|
|
5720
|
-
"""
|
|
5721
|
-
Work item is done.
|
|
5722
|
-
"""
|
|
5723
|
-
COMPLETED
|
|
5724
|
-
|
|
5725
|
-
"""
|
|
5726
|
-
Work item is canceled.
|
|
5727
|
-
"""
|
|
5728
|
-
CANCELED
|
|
5729
|
-
|
|
5730
|
-
"""
|
|
5731
|
-
Work item is skipped.
|
|
5732
|
-
"""
|
|
5733
|
-
SKIPPED
|
|
5734
|
-
|
|
5735
|
-
"""
|
|
5736
|
-
Work item is suspended.
|
|
5737
|
-
"""
|
|
5738
|
-
SUSPENDED
|
|
5739
|
-
|
|
5740
|
-
"""
|
|
5741
|
-
Work item has been marked for redo.
|
|
5742
|
-
"""
|
|
5743
|
-
REDO
|
|
5744
|
-
}
|