@projectcaluma/ember-testing 11.0.0-beta.5 → 11.0.0-beta.6

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.
@@ -1,3 +1,13 @@
1
+ """
2
+ Exposes a URL that specifies the behaviour of this scalar.
3
+ """
4
+ directive @specifiedBy(
5
+ """
6
+ The URL that specifies the behaviour of this scalar.
7
+ """
8
+ url: String!
9
+ ) on SCALAR
10
+
1
11
  type ActionButtonQuestion implements Question & Node {
2
12
  createdAt: DateTime!
3
13
  modifiedAt: DateTime!
@@ -18,43 +28,44 @@ type ActionButtonQuestion implements Question & Node {
18
28
  meta: GenericScalar!
19
29
  source: Question
20
30
  forms(
21
- before: String
22
- after: String
23
- first: Int
24
- last: Int
25
- metaValue: [JSONValueFilterType]
31
+ offset: Int = null
32
+ before: String = null
33
+ after: String = null
34
+ first: Int = null
35
+ last: Int = null
36
+ slug: String = null
37
+ name: String = null
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
26
46
 
27
47
  """
28
- FormOrdering
48
+ Only return entries created after the given DateTime (Exclusive)
29
49
  """
30
- orderBy: [FormOrdering]
31
- slug: String
32
- name: String
33
- description: String
34
- isPublished: Boolean
35
- isArchived: Boolean
36
- questions: [String]
37
- createdByUser: String
38
- createdByGroup: String
39
- modifiedByUser: String
40
- modifiedByGroup: String
50
+ createdBefore: DateTime = null
41
51
 
42
52
  """
43
- Only return entries created after the given DateTime (Exclusive)
53
+ Only return entries created at or before the given DateTime (Inclusive)
44
54
  """
45
- createdBefore: DateTime
55
+ createdAfter: DateTime = null
56
+ metaHasKey: String = null
57
+ metaValue: [JSONValueFilterType] = null
58
+ search: String = null
46
59
 
47
60
  """
48
- Only return entries created at or before the given DateTime (Inclusive)
61
+ FormOrdering
49
62
  """
50
- createdAfter: DateTime
51
- metaHasKey: String
52
- search: String
53
- slugs: [String]
63
+ orderBy: [FormOrdering] = null
64
+ slugs: [String] = null
54
65
  ): FormConnection
55
66
 
56
67
  """
57
- The ID of the object.
68
+ The ID of the object
58
69
  """
59
70
  id: ID!
60
71
  action: ButtonAction!
@@ -80,6 +91,7 @@ input AddWorkflowFlowInput {
80
91
  workflow: ID!
81
92
  tasks: [ID]!
82
93
  next: FlowJexl!
94
+ redoable: FlowJexl
83
95
  clientMutationId: String
84
96
  }
85
97
 
@@ -88,6 +100,240 @@ type AddWorkflowFlowPayload {
88
100
  clientMutationId: String
89
101
  }
90
102
 
103
+ """
104
+ Aggregate function for pivot table
105
+ """
106
+ enum AggregateFunction {
107
+ VALUE
108
+ SUM
109
+ COUNT
110
+ AVG
111
+ MAX
112
+ MIN
113
+ }
114
+
115
+ """
116
+ A cell represents one value in the analytics output.
117
+ """
118
+ type AnalyticsCell {
119
+ alias: String
120
+ value: String
121
+ }
122
+
123
+ type AnalyticsField implements Node {
124
+ createdAt: DateTime!
125
+ modifiedAt: DateTime!
126
+ createdByUser: String
127
+ createdByGroup: String
128
+ modifiedByUser: String
129
+ modifiedByGroup: String
130
+
131
+ """
132
+ The ID of the object
133
+ """
134
+ id: ID!
135
+ alias: String!
136
+ meta: GenericScalar
137
+ dataSource: String!
138
+ table: AnalyticsTable!
139
+ filters: [String]
140
+ function: AggregateFunction
141
+ showOutput: Boolean!
142
+ }
143
+
144
+ type AnalyticsFieldConnection {
145
+ """
146
+ Pagination data for this connection.
147
+ """
148
+ pageInfo: PageInfo!
149
+
150
+ """
151
+ Contains the nodes in this connection.
152
+ """
153
+ edges: [AnalyticsFieldEdge]!
154
+ totalCount: Int
155
+ }
156
+
157
+ """
158
+ A Relay edge containing a `AnalyticsField` and its cursor.
159
+ """
160
+ type AnalyticsFieldEdge {
161
+ """
162
+ The item at the end of the edge
163
+ """
164
+ node: AnalyticsField
165
+
166
+ """
167
+ A cursor for use in pagination
168
+ """
169
+ cursor: String!
170
+ }
171
+
172
+ input AnalyticsFieldFilterSetType {
173
+ alias: String
174
+ table: ID
175
+ createdByUser: String
176
+ createdByGroup: String
177
+ modifiedByUser: String
178
+ modifiedByGroup: String
179
+ createdBefore: DateTime
180
+ createdAfter: DateTime
181
+ metaHasKey: String
182
+ metaValue: [JSONValueFilterType]
183
+ search: String
184
+ slugs: [String]
185
+ invert: Boolean
186
+ }
187
+
188
+ type AnalyticsOutput {
189
+ records(
190
+ before: String = null
191
+ after: String = null
192
+ first: Int = null
193
+ last: Int = null
194
+ ): AnalyticsTableContentConnection
195
+ summary: AnalyticsRowConnection
196
+ }
197
+
198
+ type AnalyticsRowConnection {
199
+ """
200
+ Pagination data for this connection.
201
+ """
202
+ pageInfo: PageInfo!
203
+
204
+ """
205
+ Contains the nodes in this connection.
206
+ """
207
+ edges: [AnalyticsRowEdge]!
208
+ }
209
+
210
+ """
211
+ A Relay edge containing a `AnalyticsRow` and its cursor.
212
+ """
213
+ type AnalyticsRowEdge {
214
+ """
215
+ The item at the end of the edge
216
+ """
217
+ node: AnalyticsCell
218
+
219
+ """
220
+ A cursor for use in pagination
221
+ """
222
+ cursor: String!
223
+ }
224
+
225
+ type AnalyticsTable implements Node {
226
+ createdAt: DateTime!
227
+ modifiedAt: DateTime!
228
+ createdByUser: String
229
+ createdByGroup: String
230
+ modifiedByUser: String
231
+ modifiedByGroup: String
232
+ slug: String!
233
+ meta: JSONString!
234
+ disableVisibilities: Boolean!
235
+ name: String!
236
+ startingObject: StartingObject
237
+ fields(
238
+ offset: Int = null
239
+ before: String = null
240
+ after: String = null
241
+ first: Int = null
242
+ last: Int = null
243
+ ): AnalyticsFieldConnection!
244
+
245
+ """
246
+ The ID of the object
247
+ """
248
+ id: ID!
249
+ availableFields(
250
+ prefix: String = null
251
+ depth: Int = null
252
+ before: String = null
253
+ after: String = null
254
+ first: Int = null
255
+ last: Int = null
256
+ ): AvailableFieldConnection
257
+ resultData: AnalyticsOutput
258
+ }
259
+
260
+ type AnalyticsTableConnection {
261
+ """
262
+ Pagination data for this connection.
263
+ """
264
+ pageInfo: PageInfo!
265
+
266
+ """
267
+ Contains the nodes in this connection.
268
+ """
269
+ edges: [AnalyticsTableEdge]!
270
+ totalCount: Int
271
+ }
272
+
273
+ type AnalyticsTableContentConnection {
274
+ """
275
+ Pagination data for this connection.
276
+ """
277
+ pageInfo: PageInfo!
278
+
279
+ """
280
+ Contains the nodes in this connection.
281
+ """
282
+ edges: [AnalyticsTableContentEdge]!
283
+ }
284
+
285
+ """
286
+ A Relay edge containing a `AnalyticsTableContent` and its cursor.
287
+ """
288
+ type AnalyticsTableContentEdge {
289
+ """
290
+ The item at the end of the edge
291
+ """
292
+ node: AnalyticsRowConnection
293
+
294
+ """
295
+ A cursor for use in pagination
296
+ """
297
+ cursor: String!
298
+ }
299
+
300
+ """
301
+ A Relay edge containing a `AnalyticsTable` and its cursor.
302
+ """
303
+ type AnalyticsTableEdge {
304
+ """
305
+ The item at the end of the edge
306
+ """
307
+ node: AnalyticsTable
308
+
309
+ """
310
+ A cursor for use in pagination
311
+ """
312
+ cursor: String!
313
+ }
314
+
315
+ input AnalyticsTableFilterSetType {
316
+ slug: String
317
+ name: String
318
+ createdByUser: String
319
+ createdByGroup: String
320
+ modifiedByUser: String
321
+ modifiedByGroup: String
322
+ createdBefore: DateTime
323
+ createdAfter: DateTime
324
+ metaHasKey: String
325
+ metaValue: [JSONValueFilterType]
326
+ search: String
327
+ slugs: [String]
328
+ invert: Boolean
329
+ }
330
+
331
+ input AnalyticsTableOrderSetType {
332
+ meta: String
333
+ attribute: SortableAnalyticsTableAttributes
334
+ direction: AscDesc
335
+ }
336
+
91
337
  interface Answer {
92
338
  id: ID
93
339
  createdAt: DateTime!
@@ -157,6 +403,7 @@ enum AnswerLookupMode {
157
403
  ICONTAINS
158
404
  INTERSECTS
159
405
  ISNULL
406
+ IN
160
407
  GTE
161
408
  GT
162
409
  LTE
@@ -239,6 +486,59 @@ enum AscDesc {
239
486
  DESC
240
487
  }
241
488
 
489
+ """
490
+ Available fields show users what can be selected in an analysis.
491
+
492
+ The main identifier is the source path, but for display purposes,
493
+ a label (field at current position) and a full_label (including
494
+ parent fields' labels) is available.
495
+
496
+ Frontends should query sub-fields (via prefix/depth) if is_leaf is
497
+ False. Some fields can be non-leafs as well as values, such as
498
+ dates: Dates can be extracted "as is", or we can extract a
499
+ date part (such as year, quarter, ...) from it.
500
+ """
501
+ type AvailableField implements Node {
502
+ """
503
+ The ID of the object
504
+ """
505
+ id: ID!
506
+ label: String
507
+ fullLabel: String
508
+ sourcePath: String
509
+ isLeaf: Boolean
510
+ isValue: Boolean
511
+ supportedFunctions: [AggregateFunction]
512
+ }
513
+
514
+ type AvailableFieldConnection {
515
+ """
516
+ Pagination data for this connection.
517
+ """
518
+ pageInfo: PageInfo!
519
+
520
+ """
521
+ Contains the nodes in this connection.
522
+ """
523
+ edges: [AvailableFieldEdge]!
524
+ totalCount: Int
525
+ }
526
+
527
+ """
528
+ A Relay edge containing a `AvailableField` and its cursor.
529
+ """
530
+ type AvailableFieldEdge {
531
+ """
532
+ The item at the end of the edge
533
+ """
534
+ node: AvailableField
535
+
536
+ """
537
+ A cursor for use in pagination
538
+ """
539
+ cursor: String!
540
+ }
541
+
242
542
  """
243
543
  An enumeration.
244
544
  """
@@ -273,47 +573,49 @@ type CalculatedFloatQuestion implements Question & Node {
273
573
  isHidden: QuestionJexl!
274
574
  isArchived: Boolean!
275
575
  infoText: String
576
+ hintText: String
276
577
  meta: GenericScalar!
277
578
  source: Question
278
579
  forms(
279
- before: String
280
- after: String
281
- first: Int
282
- last: Int
283
- metaValue: [JSONValueFilterType]
580
+ offset: Int = null
581
+ before: String = null
582
+ after: String = null
583
+ first: Int = null
584
+ last: Int = null
585
+ slug: String = null
586
+ name: String = null
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
284
595
 
285
596
  """
286
- FormOrdering
597
+ Only return entries created after the given DateTime (Exclusive)
287
598
  """
288
- orderBy: [FormOrdering]
289
- slug: String
290
- name: String
291
- description: String
292
- isPublished: Boolean
293
- isArchived: Boolean
294
- questions: [String]
295
- createdByUser: String
296
- createdByGroup: String
297
- modifiedByUser: String
298
- modifiedByGroup: String
599
+ createdBefore: DateTime = null
299
600
 
300
601
  """
301
- Only return entries created after the given DateTime (Exclusive)
602
+ Only return entries created at or before the given DateTime (Inclusive)
302
603
  """
303
- createdBefore: DateTime
604
+ createdAfter: DateTime = null
605
+ metaHasKey: String = null
606
+ metaValue: [JSONValueFilterType] = null
607
+ search: String = null
304
608
 
305
609
  """
306
- Only return entries created at or before the given DateTime (Inclusive)
610
+ FormOrdering
307
611
  """
308
- createdAfter: DateTime
309
- metaHasKey: String
310
- search: String
311
- slugs: [String]
612
+ orderBy: [FormOrdering] = null
613
+ slugs: [String] = null
312
614
  ): FormConnection
313
615
  calcExpression: String
314
616
 
315
617
  """
316
- The ID of the object.
618
+ The ID of the object
317
619
  """
318
620
  id: ID!
319
621
  }
@@ -357,7 +659,7 @@ type Case implements Node {
357
659
  modifiedByGroup: String
358
660
 
359
661
  """
360
- The ID of the object.
662
+ The ID of the object
361
663
  """
362
664
  id: ID!
363
665
 
@@ -372,101 +674,103 @@ type Case implements Node {
372
674
  meta: GenericScalar
373
675
  document: Document
374
676
  workItems(
375
- before: String
376
- after: String
377
- first: Int
378
- last: Int
379
- metaValue: [JSONValueFilterType]
380
- status: WorkItemStatusArgument
381
- name: String
382
- task: ID
383
- tasks: [String]
384
- case: ID
385
- createdAt: DateTime
386
- closedAt: DateTime
387
- modifiedAt: DateTime
388
- deadline: DateTime
389
- hasDeadline: Boolean
390
- caseFamily: ID
677
+ offset: Int = null
678
+ before: String = null
679
+ after: String = null
680
+ first: Int = null
681
+ 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
391
694
 
392
695
  """
393
696
  WorkItemOrdering
394
697
  """
395
- orderBy: [WorkItemOrdering]
396
- filter: [WorkItemFilterSetType]
397
- order: [WorkItemOrderSetType]
398
- createdByUser: String
399
- createdByGroup: String
400
- modifiedByUser: String
401
- modifiedByGroup: String
698
+ orderBy: [WorkItemOrdering] = null
699
+ filter: [WorkItemFilterSetType] = null
700
+ order: [WorkItemOrderSetType] = null
701
+ createdByUser: String = null
702
+ createdByGroup: String = null
703
+ modifiedByUser: String = null
704
+ modifiedByGroup: String = null
402
705
 
403
706
  """
404
707
  Only return entries created after the given DateTime (Exclusive)
405
708
  """
406
- createdBefore: DateTime
709
+ createdBefore: DateTime = null
407
710
 
408
711
  """
409
712
  Only return entries created at or before the given DateTime (Inclusive)
410
713
  """
411
- createdAfter: DateTime
412
- metaHasKey: String
413
- id: ID
414
- addressedGroups: [String]
415
- controllingGroups: [String]
416
- assignedUsers: [String]
417
- documentHasAnswer: [HasAnswerFilterType]
418
- caseDocumentHasAnswer: [HasAnswerFilterType]
419
- caseMetaValue: [JSONValueFilterType]
420
- rootCaseMetaValue: [JSONValueFilterType]
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
421
724
  ): WorkItemConnection
422
725
  parentWorkItem: WorkItem
423
726
  familyWorkItems(
424
- before: String
425
- after: String
426
- first: Int
427
- last: Int
428
- metaValue: [JSONValueFilterType]
429
- status: WorkItemStatusArgument
727
+ offset: Int = null
728
+ before: String = null
729
+ after: String = null
730
+ first: Int = null
731
+ last: Int = null
732
+ metaValue: [JSONValueFilterType] = null
733
+ status: WorkItemStatusArgument = null
430
734
 
431
735
  """
432
736
  WorkItemOrdering
433
737
  """
434
- orderBy: [WorkItemOrdering]
435
- filter: [WorkItemFilterSetType]
436
- order: [WorkItemOrderSetType]
437
- documentHasAnswer: [HasAnswerFilterType]
438
- caseDocumentHasAnswer: [HasAnswerFilterType]
439
- caseMetaValue: [JSONValueFilterType]
440
- rootCaseMetaValue: [JSONValueFilterType]
441
- name: String
442
- task: ID
443
- tasks: [String]
444
- case: ID
445
- createdAt: DateTime
446
- closedAt: DateTime
447
- modifiedAt: DateTime
448
- deadline: DateTime
449
- hasDeadline: Boolean
450
- caseFamily: ID
451
- createdByUser: String
452
- createdByGroup: String
453
- modifiedByUser: String
454
- modifiedByGroup: String
738
+ orderBy: [WorkItemOrdering] = null
739
+ filter: [WorkItemFilterSetType] = null
740
+ 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
455
759
 
456
760
  """
457
761
  Only return entries created after the given DateTime (Exclusive)
458
762
  """
459
- createdBefore: DateTime
763
+ createdBefore: DateTime = null
460
764
 
461
765
  """
462
766
  Only return entries created at or before the given DateTime (Inclusive)
463
767
  """
464
- createdAfter: DateTime
465
- metaHasKey: String
466
- id: ID
467
- addressedGroups: [String]
468
- controllingGroups: [String]
469
- assignedUsers: [String]
768
+ createdAfter: DateTime = null
769
+ metaHasKey: String = null
770
+ id: ID = null
771
+ addressedGroups: [String] = null
772
+ controllingGroups: [String] = null
773
+ assignedUsers: [String] = null
470
774
  ): WorkItemConnection
471
775
  }
472
776
 
@@ -607,24 +911,9 @@ input CaseOrderSetType {
607
911
  An enumeration.
608
912
  """
609
913
  enum CaseStatus {
610
- """
611
- Case is running and work items need to be completed.
612
- """
613
914
  RUNNING
614
-
615
- """
616
- Case is done.
617
- """
618
915
  COMPLETED
619
-
620
- """
621
- Case is canceled.
622
- """
623
916
  CANCELED
624
-
625
- """
626
- Case is suspended.
627
- """
628
917
  SUSPENDED
629
918
  }
630
919
 
@@ -670,78 +959,81 @@ type ChoiceQuestion implements Question & Node {
670
959
  isHidden: QuestionJexl!
671
960
  isArchived: Boolean!
672
961
  infoText: String
962
+ hintText: String
673
963
  meta: GenericScalar!
674
964
  source: Question
675
965
  defaultAnswer: StringAnswer
676
966
  forms(
677
- before: String
678
- after: String
679
- first: Int
680
- last: Int
681
- metaValue: [JSONValueFilterType]
967
+ offset: Int = null
968
+ before: String = null
969
+ after: String = null
970
+ first: Int = null
971
+ last: Int = null
972
+ slug: String = null
973
+ name: String = null
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
682
982
 
683
983
  """
684
- FormOrdering
984
+ Only return entries created after the given DateTime (Exclusive)
685
985
  """
686
- orderBy: [FormOrdering]
687
- slug: String
688
- name: String
689
- description: String
690
- isPublished: Boolean
691
- isArchived: Boolean
692
- questions: [String]
693
- createdByUser: String
694
- createdByGroup: String
695
- modifiedByUser: String
696
- modifiedByGroup: String
986
+ createdBefore: DateTime = null
697
987
 
698
988
  """
699
- Only return entries created after the given DateTime (Exclusive)
989
+ Only return entries created at or before the given DateTime (Inclusive)
700
990
  """
701
- createdBefore: DateTime
991
+ createdAfter: DateTime = null
992
+ metaHasKey: String = null
993
+ metaValue: [JSONValueFilterType] = null
994
+ search: String = null
702
995
 
703
996
  """
704
- Only return entries created at or before the given DateTime (Inclusive)
997
+ FormOrdering
705
998
  """
706
- createdAfter: DateTime
707
- metaHasKey: String
708
- search: String
709
- slugs: [String]
999
+ orderBy: [FormOrdering] = null
1000
+ slugs: [String] = null
710
1001
  ): FormConnection
711
1002
  options(
712
- before: String
713
- after: String
714
- first: Int
715
- last: Int
716
- metaValue: [JSONValueFilterType]
717
- slug: String
718
- label: String
719
- isArchived: Boolean
720
- createdByUser: String
721
- createdByGroup: String
722
- modifiedByUser: String
723
- modifiedByGroup: String
1003
+ offset: Int = null
1004
+ before: String = null
1005
+ after: String = null
1006
+ first: Int = null
1007
+ last: Int = null
1008
+ metaValue: [JSONValueFilterType] = null
1009
+ slug: String = null
1010
+ label: String = null
1011
+ isArchived: Boolean = null
1012
+ createdByUser: String = null
1013
+ createdByGroup: String = null
1014
+ modifiedByUser: String = null
1015
+ modifiedByGroup: String = null
724
1016
 
725
1017
  """
726
1018
  Only return entries created after the given DateTime (Exclusive)
727
1019
  """
728
- createdBefore: DateTime
1020
+ createdBefore: DateTime = null
729
1021
 
730
1022
  """
731
1023
  Only return entries created at or before the given DateTime (Inclusive)
732
1024
  """
733
- createdAfter: DateTime
734
- metaHasKey: String
735
- search: String
1025
+ createdAfter: DateTime = null
1026
+ metaHasKey: String = null
1027
+ search: String = null
736
1028
 
737
1029
  """
738
1030
  OptionOrdering
739
1031
  """
740
- orderBy: [OptionOrdering]
1032
+ orderBy: [OptionOrdering] = null
741
1033
  ): OptionConnection
742
1034
 
743
1035
  """
744
- The ID of the object.
1036
+ The ID of the object
745
1037
  """
746
1038
  id: ID!
747
1039
  }
@@ -756,7 +1048,6 @@ type CompleteTaskFormTask implements Task & Node {
756
1048
  slug: String!
757
1049
  name: String!
758
1050
  description: String
759
- type: TaskType!
760
1051
  meta: GenericScalar!
761
1052
  addressGroups: GroupJexl
762
1053
  controlGroups: GroupJexl
@@ -767,10 +1058,11 @@ type CompleteTaskFormTask implements Task & Node {
767
1058
  """
768
1059
  leadTime: Int
769
1060
  isMultipleInstance: Boolean!
1061
+ continueAsync: Boolean
770
1062
  form: Form!
771
1063
 
772
1064
  """
773
- The ID of the object.
1065
+ The ID of the object
774
1066
  """
775
1067
  id: ID!
776
1068
  }
@@ -785,7 +1077,6 @@ type CompleteWorkflowFormTask implements Task & Node {
785
1077
  slug: String!
786
1078
  name: String!
787
1079
  description: String
788
- type: TaskType!
789
1080
  meta: GenericScalar!
790
1081
  addressGroups: GroupJexl
791
1082
  controlGroups: GroupJexl
@@ -796,9 +1087,10 @@ type CompleteWorkflowFormTask implements Task & Node {
796
1087
  """
797
1088
  leadTime: Int
798
1089
  isMultipleInstance: Boolean!
1090
+ continueAsync: Boolean
799
1091
 
800
1092
  """
801
- The ID of the object.
1093
+ The ID of the object
802
1094
  """
803
1095
  id: ID!
804
1096
  }
@@ -983,7 +1275,7 @@ type DateAnswer implements Answer & Node {
983
1275
  modifiedByGroup: String
984
1276
 
985
1277
  """
986
- The ID of the object.
1278
+ The ID of the object
987
1279
  """
988
1280
  id: ID!
989
1281
  question: Question!
@@ -1009,47 +1301,49 @@ type DateQuestion implements Question & Node {
1009
1301
  isHidden: QuestionJexl!
1010
1302
  isArchived: Boolean!
1011
1303
  infoText: String
1304
+ hintText: String
1012
1305
  meta: GenericScalar!
1013
1306
  source: Question
1014
1307
  defaultAnswer: DateAnswer
1015
1308
  forms(
1016
- before: String
1017
- after: String
1018
- first: Int
1019
- last: Int
1020
- metaValue: [JSONValueFilterType]
1309
+ offset: Int = null
1310
+ before: String = null
1311
+ after: String = null
1312
+ first: Int = null
1313
+ last: Int = null
1314
+ slug: String = null
1315
+ name: String = null
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
1021
1324
 
1022
1325
  """
1023
- FormOrdering
1326
+ Only return entries created after the given DateTime (Exclusive)
1024
1327
  """
1025
- orderBy: [FormOrdering]
1026
- slug: String
1027
- name: String
1028
- description: String
1029
- isPublished: Boolean
1030
- isArchived: Boolean
1031
- questions: [String]
1032
- createdByUser: String
1033
- createdByGroup: String
1034
- modifiedByUser: String
1035
- modifiedByGroup: String
1328
+ createdBefore: DateTime = null
1036
1329
 
1037
1330
  """
1038
- Only return entries created after the given DateTime (Exclusive)
1331
+ Only return entries created at or before the given DateTime (Inclusive)
1039
1332
  """
1040
- createdBefore: DateTime
1333
+ createdAfter: DateTime = null
1334
+ metaHasKey: String = null
1335
+ metaValue: [JSONValueFilterType] = null
1336
+ search: String = null
1041
1337
 
1042
1338
  """
1043
- Only return entries created at or before the given DateTime (Inclusive)
1339
+ FormOrdering
1044
1340
  """
1045
- createdAfter: DateTime
1046
- metaHasKey: String
1047
- search: String
1048
- slugs: [String]
1341
+ orderBy: [FormOrdering] = null
1342
+ slugs: [String] = null
1049
1343
  ): FormConnection
1050
1344
 
1051
1345
  """
1052
- The ID of the object.
1346
+ The ID of the object
1053
1347
  """
1054
1348
  id: ID!
1055
1349
  }
@@ -1155,7 +1449,7 @@ type Document implements Node {
1155
1449
  modifiedByGroup: String
1156
1450
 
1157
1451
  """
1158
- The ID of the object.
1452
+ The ID of the object
1159
1453
  """
1160
1454
  id: ID!
1161
1455
  form: Form!
@@ -1170,43 +1464,45 @@ type Document implements Node {
1170
1464
  Reference this document has been copied from
1171
1465
  """
1172
1466
  copies(
1173
- before: String
1174
- after: String
1175
- first: Int
1176
- last: Int
1467
+ offset: Int = null
1468
+ before: String = null
1469
+ after: String = null
1470
+ first: Int = null
1471
+ last: Int = null
1177
1472
  ): DocumentConnection!
1178
1473
  answers(
1179
- before: String
1180
- after: String
1181
- first: Int
1182
- last: Int
1183
- metaValue: [JSONValueFilterType]
1184
- question: ID
1185
- search: String
1474
+ offset: Int = null
1475
+ before: String = null
1476
+ after: String = null
1477
+ first: Int = null
1478
+ last: Int = null
1479
+ metaValue: [JSONValueFilterType] = null
1480
+ question: ID = null
1481
+ search: String = null
1186
1482
 
1187
1483
  """
1188
1484
  AnswerOrdering
1189
1485
  """
1190
- orderBy: [AnswerOrdering]
1191
- filter: [AnswerFilterSetType]
1192
- order: [AnswerOrderSetType]
1193
- createdByUser: String
1194
- createdByGroup: String
1195
- modifiedByUser: String
1196
- modifiedByGroup: String
1486
+ orderBy: [AnswerOrdering] = null
1487
+ filter: [AnswerFilterSetType] = null
1488
+ order: [AnswerOrderSetType] = null
1489
+ createdByUser: String = null
1490
+ createdByGroup: String = null
1491
+ modifiedByUser: String = null
1492
+ modifiedByGroup: String = null
1197
1493
 
1198
1494
  """
1199
1495
  Only return entries created after the given DateTime (Exclusive)
1200
1496
  """
1201
- createdBefore: DateTime
1497
+ createdBefore: DateTime = null
1202
1498
 
1203
1499
  """
1204
1500
  Only return entries created at or before the given DateTime (Inclusive)
1205
1501
  """
1206
- createdAfter: DateTime
1207
- metaHasKey: String
1208
- questions: [ID]
1209
- visibleInContext: Boolean
1502
+ createdAfter: DateTime = null
1503
+ metaHasKey: String = null
1504
+ questions: [ID] = null
1505
+ visibleInContext: Boolean = null
1210
1506
  ): AnswerConnection
1211
1507
  case: Case
1212
1508
  workItem: WorkItem
@@ -1380,53 +1676,55 @@ type DynamicChoiceQuestion implements Question & DynamicQuestion & Node {
1380
1676
  isHidden: QuestionJexl!
1381
1677
  isArchived: Boolean!
1382
1678
  infoText: String
1679
+ hintText: String
1383
1680
  meta: GenericScalar!
1384
1681
  source: Question
1385
1682
  forms(
1386
- before: String
1387
- after: String
1388
- first: Int
1389
- last: Int
1390
- metaValue: [JSONValueFilterType]
1683
+ offset: Int = null
1684
+ before: String = null
1685
+ after: String = null
1686
+ first: Int = null
1687
+ last: Int = null
1688
+ slug: String = null
1689
+ name: String = null
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
1391
1698
 
1392
1699
  """
1393
- FormOrdering
1700
+ Only return entries created after the given DateTime (Exclusive)
1394
1701
  """
1395
- orderBy: [FormOrdering]
1396
- slug: String
1397
- name: String
1398
- description: String
1399
- isPublished: Boolean
1400
- isArchived: Boolean
1401
- questions: [String]
1402
- createdByUser: String
1403
- createdByGroup: String
1404
- modifiedByUser: String
1405
- modifiedByGroup: String
1702
+ createdBefore: DateTime = null
1406
1703
 
1407
1704
  """
1408
- Only return entries created after the given DateTime (Exclusive)
1705
+ Only return entries created at or before the given DateTime (Inclusive)
1409
1706
  """
1410
- createdBefore: DateTime
1707
+ createdAfter: DateTime = null
1708
+ metaHasKey: String = null
1709
+ metaValue: [JSONValueFilterType] = null
1710
+ search: String = null
1411
1711
 
1412
1712
  """
1413
- Only return entries created at or before the given DateTime (Inclusive)
1713
+ FormOrdering
1414
1714
  """
1415
- createdAfter: DateTime
1416
- metaHasKey: String
1417
- search: String
1418
- slugs: [String]
1715
+ orderBy: [FormOrdering] = null
1716
+ slugs: [String] = null
1419
1717
  ): FormConnection
1420
1718
  options(
1421
- before: String
1422
- after: String
1423
- first: Int
1424
- last: Int
1719
+ before: String = null
1720
+ after: String = null
1721
+ first: Int = null
1722
+ last: Int = null
1425
1723
  ): DataSourceDataConnection
1426
1724
  dataSource: String!
1427
1725
 
1428
1726
  """
1429
- The ID of the object.
1727
+ The ID of the object
1430
1728
  """
1431
1729
  id: ID!
1432
1730
  }
@@ -1448,53 +1746,55 @@ type DynamicMultipleChoiceQuestion implements Question & DynamicQuestion & Node
1448
1746
  isHidden: QuestionJexl!
1449
1747
  isArchived: Boolean!
1450
1748
  infoText: String
1749
+ hintText: String
1451
1750
  meta: GenericScalar!
1452
1751
  source: Question
1453
1752
  forms(
1454
- before: String
1455
- after: String
1456
- first: Int
1457
- last: Int
1458
- metaValue: [JSONValueFilterType]
1753
+ offset: Int = null
1754
+ before: String = null
1755
+ after: String = null
1756
+ first: Int = null
1757
+ last: Int = null
1758
+ slug: String = null
1759
+ name: String = null
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
1459
1768
 
1460
1769
  """
1461
- FormOrdering
1770
+ Only return entries created after the given DateTime (Exclusive)
1462
1771
  """
1463
- orderBy: [FormOrdering]
1464
- slug: String
1465
- name: String
1466
- description: String
1467
- isPublished: Boolean
1468
- isArchived: Boolean
1469
- questions: [String]
1470
- createdByUser: String
1471
- createdByGroup: String
1472
- modifiedByUser: String
1473
- modifiedByGroup: String
1772
+ createdBefore: DateTime = null
1474
1773
 
1475
1774
  """
1476
- Only return entries created after the given DateTime (Exclusive)
1775
+ Only return entries created at or before the given DateTime (Inclusive)
1477
1776
  """
1478
- createdBefore: DateTime
1777
+ createdAfter: DateTime = null
1778
+ metaHasKey: String = null
1779
+ metaValue: [JSONValueFilterType] = null
1780
+ search: String = null
1479
1781
 
1480
1782
  """
1481
- Only return entries created at or before the given DateTime (Inclusive)
1783
+ FormOrdering
1482
1784
  """
1483
- createdAfter: DateTime
1484
- metaHasKey: String
1485
- search: String
1486
- slugs: [String]
1785
+ orderBy: [FormOrdering] = null
1786
+ slugs: [String] = null
1487
1787
  ): FormConnection
1488
1788
  options(
1489
- before: String
1490
- after: String
1491
- first: Int
1492
- last: Int
1789
+ before: String = null
1790
+ after: String = null
1791
+ first: Int = null
1792
+ last: Int = null
1493
1793
  ): DataSourceDataConnection
1494
1794
  dataSource: String!
1495
1795
 
1496
1796
  """
1497
- The ID of the object.
1797
+ The ID of the object
1498
1798
  """
1499
1799
  id: ID!
1500
1800
  }
@@ -1508,7 +1808,7 @@ type DynamicOption implements Node {
1508
1808
  modifiedByGroup: String
1509
1809
 
1510
1810
  """
1511
- The ID of the object.
1811
+ The ID of the object
1512
1812
  """
1513
1813
  id: ID!
1514
1814
  slug: String!
@@ -1553,12 +1853,13 @@ input DynamicOptionFilterSetType {
1553
1853
 
1554
1854
  interface DynamicQuestion {
1555
1855
  options(
1556
- before: String
1557
- after: String
1558
- first: Int
1559
- last: Int
1856
+ before: String = null
1857
+ after: String = null
1858
+ first: Int = null
1859
+ last: Int = null
1560
1860
  ): DataSourceDataConnection
1561
1861
  dataSource: String!
1862
+ hintText: String
1562
1863
  }
1563
1864
 
1564
1865
  type File implements Node {
@@ -1570,7 +1871,7 @@ type File implements Node {
1570
1871
  modifiedByGroup: String
1571
1872
 
1572
1873
  """
1573
- The ID of the object.
1874
+ The ID of the object
1574
1875
  """
1575
1876
  id: ID!
1576
1877
  name: String!
@@ -1589,7 +1890,7 @@ type FileAnswer implements Answer & Node {
1589
1890
  modifiedByGroup: String
1590
1891
 
1591
1892
  """
1592
- The ID of the object.
1893
+ The ID of the object
1593
1894
  """
1594
1895
  id: ID!
1595
1896
  question: Question!
@@ -1615,46 +1916,48 @@ type FileQuestion implements Question & Node {
1615
1916
  isHidden: QuestionJexl!
1616
1917
  isArchived: Boolean!
1617
1918
  infoText: String
1919
+ hintText: String
1618
1920
  meta: GenericScalar!
1619
1921
  source: Question
1620
1922
  forms(
1621
- before: String
1622
- after: String
1623
- first: Int
1624
- last: Int
1625
- metaValue: [JSONValueFilterType]
1923
+ offset: Int = null
1924
+ before: String = null
1925
+ after: String = null
1926
+ first: Int = null
1927
+ last: Int = null
1928
+ slug: String = null
1929
+ name: String = null
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
1626
1938
 
1627
1939
  """
1628
- FormOrdering
1940
+ Only return entries created after the given DateTime (Exclusive)
1629
1941
  """
1630
- orderBy: [FormOrdering]
1631
- slug: String
1632
- name: String
1633
- description: String
1634
- isPublished: Boolean
1635
- isArchived: Boolean
1636
- questions: [String]
1637
- createdByUser: String
1638
- createdByGroup: String
1639
- modifiedByUser: String
1640
- modifiedByGroup: String
1942
+ createdBefore: DateTime = null
1641
1943
 
1642
1944
  """
1643
- Only return entries created after the given DateTime (Exclusive)
1945
+ Only return entries created at or before the given DateTime (Inclusive)
1644
1946
  """
1645
- createdBefore: DateTime
1947
+ createdAfter: DateTime = null
1948
+ metaHasKey: String = null
1949
+ metaValue: [JSONValueFilterType] = null
1950
+ search: String = null
1646
1951
 
1647
1952
  """
1648
- Only return entries created at or before the given DateTime (Inclusive)
1953
+ FormOrdering
1649
1954
  """
1650
- createdAfter: DateTime
1651
- metaHasKey: String
1652
- search: String
1653
- slugs: [String]
1955
+ orderBy: [FormOrdering] = null
1956
+ slugs: [String] = null
1654
1957
  ): FormConnection
1655
1958
 
1656
1959
  """
1657
- The ID of the object.
1960
+ The ID of the object
1658
1961
  """
1659
1962
  id: ID!
1660
1963
  }
@@ -1668,7 +1971,7 @@ type FloatAnswer implements Answer & Node {
1668
1971
  modifiedByGroup: String
1669
1972
 
1670
1973
  """
1671
- The ID of the object.
1974
+ The ID of the object
1672
1975
  """
1673
1976
  id: ID!
1674
1977
  question: Question!
@@ -1694,47 +1997,49 @@ type FloatQuestion implements Question & Node {
1694
1997
  isArchived: Boolean!
1695
1998
  placeholder: String
1696
1999
  infoText: String
2000
+ hintText: String
1697
2001
  meta: GenericScalar!
1698
2002
  source: Question
1699
2003
  defaultAnswer: FloatAnswer
1700
2004
  forms(
1701
- before: String
1702
- after: String
1703
- first: Int
1704
- last: Int
1705
- metaValue: [JSONValueFilterType]
2005
+ offset: Int = null
2006
+ before: String = null
2007
+ after: String = null
2008
+ first: Int = null
2009
+ last: Int = null
2010
+ slug: String = null
2011
+ name: String = null
2012
+ description: String = null
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
1706
2020
 
1707
2021
  """
1708
- FormOrdering
2022
+ Only return entries created after the given DateTime (Exclusive)
1709
2023
  """
1710
- orderBy: [FormOrdering]
1711
- slug: String
1712
- name: String
1713
- description: String
1714
- isPublished: Boolean
1715
- isArchived: Boolean
1716
- questions: [String]
1717
- createdByUser: String
1718
- createdByGroup: String
1719
- modifiedByUser: String
1720
- modifiedByGroup: String
2024
+ createdBefore: DateTime = null
1721
2025
 
1722
2026
  """
1723
- Only return entries created after the given DateTime (Exclusive)
2027
+ Only return entries created at or before the given DateTime (Inclusive)
1724
2028
  """
1725
- createdBefore: DateTime
2029
+ createdAfter: DateTime = null
2030
+ metaHasKey: String = null
2031
+ metaValue: [JSONValueFilterType] = null
2032
+ search: String = null
1726
2033
 
1727
2034
  """
1728
- Only return entries created at or before the given DateTime (Inclusive)
2035
+ FormOrdering
1729
2036
  """
1730
- createdAfter: DateTime
1731
- metaHasKey: String
1732
- search: String
1733
- slugs: [String]
2037
+ orderBy: [FormOrdering] = null
2038
+ slugs: [String] = null
1734
2039
  ): FormConnection
1735
2040
 
1736
2041
  """
1737
- The ID of the object.
2042
+ The ID of the object
1738
2043
  """
1739
2044
  id: ID!
1740
2045
  minValue: Float
@@ -1750,7 +2055,7 @@ type Flow implements Node {
1750
2055
  modifiedByGroup: String
1751
2056
 
1752
2057
  """
1753
- The ID of the object.
2058
+ The ID of the object
1754
2059
  """
1755
2060
  id: ID!
1756
2061
  next: FlowJexl!
@@ -1823,41 +2128,42 @@ type Form implements Node {
1823
2128
  isPublished: Boolean!
1824
2129
  isArchived: Boolean!
1825
2130
  questions(
1826
- before: String
1827
- after: String
1828
- first: Int
1829
- last: Int
1830
- metaValue: [JSONValueFilterType]
1831
- slug: String
1832
- label: String
1833
- isRequired: String
1834
- isHidden: String
1835
- isArchived: Boolean
1836
- subForm: ID
1837
- rowForm: ID
1838
- createdByUser: String
1839
- createdByGroup: String
1840
- modifiedByUser: String
1841
- modifiedByGroup: String
2131
+ offset: Int = null
2132
+ before: String = null
2133
+ after: String = null
2134
+ first: Int = null
2135
+ last: Int = null
2136
+ metaValue: [JSONValueFilterType] = null
2137
+ slug: String = null
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
1842
2148
 
1843
2149
  """
1844
2150
  Only return entries created after the given DateTime (Exclusive)
1845
2151
  """
1846
- createdBefore: DateTime
2152
+ createdBefore: DateTime = null
1847
2153
 
1848
2154
  """
1849
2155
  Only return entries created at or before the given DateTime (Inclusive)
1850
2156
  """
1851
- createdAfter: DateTime
1852
- metaHasKey: String
1853
- excludeForms: [ID]
1854
- search: String
2157
+ createdAfter: DateTime = null
2158
+ metaHasKey: String = null
2159
+ excludeForms: [ID] = null
2160
+ search: String = null
1855
2161
 
1856
2162
  """
1857
2163
  QuestionOrdering
1858
2164
  """
1859
- orderBy: [QuestionOrdering]
1860
- slugs: [String]
2165
+ orderBy: [QuestionOrdering] = null
2166
+ slugs: [String] = null
1861
2167
  ): QuestionConnection
1862
2168
 
1863
2169
  """
@@ -1865,14 +2171,15 @@ type Form implements Node {
1865
2171
  """
1866
2172
  source: Form
1867
2173
  documents(
1868
- before: String
1869
- after: String
1870
- first: Int
1871
- last: Int
2174
+ offset: Int = null
2175
+ before: String = null
2176
+ after: String = null
2177
+ first: Int = null
2178
+ last: Int = null
1872
2179
  ): DocumentConnection!
1873
2180
 
1874
2181
  """
1875
- The ID of the object.
2182
+ The ID of the object
1876
2183
  """
1877
2184
  id: ID!
1878
2185
  }
@@ -2062,39 +2369,40 @@ type FormQuestion implements Question & Node {
2062
2369
  meta: GenericScalar!
2063
2370
  source: Question
2064
2371
  forms(
2065
- before: String
2066
- after: String
2067
- first: Int
2068
- last: Int
2069
- metaValue: [JSONValueFilterType]
2372
+ offset: Int = null
2373
+ before: String = null
2374
+ after: String = null
2375
+ first: Int = null
2376
+ last: Int = null
2377
+ slug: String = null
2378
+ name: String = null
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
2070
2387
 
2071
2388
  """
2072
- FormOrdering
2389
+ Only return entries created after the given DateTime (Exclusive)
2073
2390
  """
2074
- orderBy: [FormOrdering]
2075
- slug: String
2076
- name: String
2077
- description: String
2078
- isPublished: Boolean
2079
- isArchived: Boolean
2080
- questions: [String]
2081
- createdByUser: String
2082
- createdByGroup: String
2083
- modifiedByUser: String
2084
- modifiedByGroup: String
2391
+ createdBefore: DateTime = null
2085
2392
 
2086
2393
  """
2087
- Only return entries created after the given DateTime (Exclusive)
2394
+ Only return entries created at or before the given DateTime (Inclusive)
2088
2395
  """
2089
- createdBefore: DateTime
2396
+ createdAfter: DateTime = null
2397
+ metaHasKey: String = null
2398
+ metaValue: [JSONValueFilterType] = null
2399
+ search: String = null
2090
2400
 
2091
2401
  """
2092
- Only return entries created at or before the given DateTime (Inclusive)
2402
+ FormOrdering
2093
2403
  """
2094
- createdAfter: DateTime
2095
- metaHasKey: String
2096
- search: String
2097
- slugs: [String]
2404
+ orderBy: [FormOrdering] = null
2405
+ slugs: [String] = null
2098
2406
  ): FormConnection
2099
2407
 
2100
2408
  """
@@ -2103,7 +2411,7 @@ type FormQuestion implements Question & Node {
2103
2411
  subForm: Form
2104
2412
 
2105
2413
  """
2106
- The ID of the object.
2414
+ The ID of the object
2107
2415
  """
2108
2416
  id: ID!
2109
2417
  }
@@ -2147,7 +2455,7 @@ type IntegerAnswer implements Answer & Node {
2147
2455
  modifiedByGroup: String
2148
2456
 
2149
2457
  """
2150
- The ID of the object.
2458
+ The ID of the object
2151
2459
  """
2152
2460
  id: ID!
2153
2461
  question: Question!
@@ -2173,47 +2481,49 @@ type IntegerQuestion implements Question & Node {
2173
2481
  isArchived: Boolean!
2174
2482
  placeholder: String
2175
2483
  infoText: String
2484
+ hintText: String
2176
2485
  meta: GenericScalar!
2177
2486
  source: Question
2178
2487
  defaultAnswer: IntegerAnswer
2179
2488
  forms(
2180
- before: String
2181
- after: String
2182
- first: Int
2183
- last: Int
2184
- metaValue: [JSONValueFilterType]
2489
+ offset: Int = null
2490
+ before: String = null
2491
+ after: String = null
2492
+ first: Int = null
2493
+ last: Int = null
2494
+ slug: String = null
2495
+ name: String = null
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
2185
2504
 
2186
2505
  """
2187
- FormOrdering
2506
+ Only return entries created after the given DateTime (Exclusive)
2188
2507
  """
2189
- orderBy: [FormOrdering]
2190
- slug: String
2191
- name: String
2192
- description: String
2193
- isPublished: Boolean
2194
- isArchived: Boolean
2195
- questions: [String]
2196
- createdByUser: String
2197
- createdByGroup: String
2198
- modifiedByUser: String
2199
- modifiedByGroup: String
2508
+ createdBefore: DateTime = null
2200
2509
 
2201
2510
  """
2202
- Only return entries created after the given DateTime (Exclusive)
2511
+ Only return entries created at or before the given DateTime (Inclusive)
2203
2512
  """
2204
- createdBefore: DateTime
2513
+ createdAfter: DateTime = null
2514
+ metaHasKey: String = null
2515
+ metaValue: [JSONValueFilterType] = null
2516
+ search: String = null
2205
2517
 
2206
2518
  """
2207
- Only return entries created at or before the given DateTime (Inclusive)
2519
+ FormOrdering
2208
2520
  """
2209
- createdAfter: DateTime
2210
- metaHasKey: String
2211
- search: String
2212
- slugs: [String]
2521
+ orderBy: [FormOrdering] = null
2522
+ slugs: [String] = null
2213
2523
  ): FormConnection
2214
2524
 
2215
2525
  """
2216
- The ID of the object.
2526
+ The ID of the object
2217
2527
  """
2218
2528
  id: ID!
2219
2529
  maxValue: Int
@@ -2255,17 +2565,17 @@ type ListAnswer implements Answer & Node {
2255
2565
  modifiedByGroup: String
2256
2566
 
2257
2567
  """
2258
- The ID of the object.
2568
+ The ID of the object
2259
2569
  """
2260
2570
  id: ID!
2261
2571
  question: Question!
2262
2572
  value: [String]
2263
2573
  meta: GenericScalar!
2264
2574
  selectedOptions(
2265
- before: String
2266
- after: String
2267
- first: Int
2268
- last: Int
2575
+ before: String = null
2576
+ after: String = null
2577
+ first: Int = null
2578
+ last: Int = null
2269
2579
  ): SelectedOptionConnection
2270
2580
  }
2271
2581
 
@@ -2286,84 +2596,95 @@ type MultipleChoiceQuestion implements Question & Node {
2286
2596
  isHidden: QuestionJexl!
2287
2597
  isArchived: Boolean!
2288
2598
  infoText: String
2599
+ hintText: String
2289
2600
  meta: GenericScalar!
2290
2601
  source: Question
2291
2602
  defaultAnswer: ListAnswer
2292
2603
  forms(
2293
- before: String
2294
- after: String
2295
- first: Int
2296
- last: Int
2297
- metaValue: [JSONValueFilterType]
2604
+ offset: Int = null
2605
+ before: String = null
2606
+ after: String = null
2607
+ first: Int = null
2608
+ last: Int = null
2609
+ slug: String = null
2610
+ name: String = null
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
2298
2619
 
2299
2620
  """
2300
- FormOrdering
2621
+ Only return entries created after the given DateTime (Exclusive)
2301
2622
  """
2302
- orderBy: [FormOrdering]
2303
- slug: String
2304
- name: String
2305
- description: String
2306
- isPublished: Boolean
2307
- isArchived: Boolean
2308
- questions: [String]
2309
- createdByUser: String
2310
- createdByGroup: String
2311
- modifiedByUser: String
2312
- modifiedByGroup: String
2623
+ createdBefore: DateTime = null
2313
2624
 
2314
2625
  """
2315
- Only return entries created after the given DateTime (Exclusive)
2626
+ Only return entries created at or before the given DateTime (Inclusive)
2316
2627
  """
2317
- createdBefore: DateTime
2628
+ createdAfter: DateTime = null
2629
+ metaHasKey: String = null
2630
+ metaValue: [JSONValueFilterType] = null
2631
+ search: String = null
2318
2632
 
2319
2633
  """
2320
- Only return entries created at or before the given DateTime (Inclusive)
2634
+ FormOrdering
2321
2635
  """
2322
- createdAfter: DateTime
2323
- metaHasKey: String
2324
- search: String
2325
- slugs: [String]
2636
+ orderBy: [FormOrdering] = null
2637
+ slugs: [String] = null
2326
2638
  ): FormConnection
2327
2639
  options(
2328
- before: String
2329
- after: String
2330
- first: Int
2331
- last: Int
2332
- metaValue: [JSONValueFilterType]
2640
+ offset: Int = null
2641
+ before: String = null
2642
+ after: String = null
2643
+ first: Int = null
2644
+ last: Int = null
2645
+ metaValue: [JSONValueFilterType] = null
2333
2646
 
2334
2647
  """
2335
2648
  OptionOrdering
2336
2649
  """
2337
- orderBy: [OptionOrdering]
2338
- slug: String
2339
- label: String
2340
- isArchived: Boolean
2341
- createdByUser: String
2342
- createdByGroup: String
2343
- modifiedByUser: String
2344
- modifiedByGroup: String
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
2345
2658
 
2346
2659
  """
2347
2660
  Only return entries created after the given DateTime (Exclusive)
2348
2661
  """
2349
- createdBefore: DateTime
2662
+ createdBefore: DateTime = null
2350
2663
 
2351
2664
  """
2352
2665
  Only return entries created at or before the given DateTime (Inclusive)
2353
2666
  """
2354
- createdAfter: DateTime
2355
- metaHasKey: String
2356
- search: String
2667
+ createdAfter: DateTime = null
2668
+ metaHasKey: String = null
2669
+ search: String = null
2357
2670
  ): OptionConnection
2358
2671
  staticContent: String
2359
2672
 
2360
2673
  """
2361
- The ID of the object.
2674
+ The ID of the object
2362
2675
  """
2363
2676
  id: ID!
2364
2677
  }
2365
2678
 
2366
2679
  type Mutation {
2680
+ saveAnalyticsTable(input: SaveAnalyticsTableInput!): SaveAnalyticsTablePayload
2681
+ removeAnalyticsTable(
2682
+ input: RemoveAnalyticsTableInput!
2683
+ ): RemoveAnalyticsTablePayload
2684
+ saveAnalyticsField(input: SaveAnalyticsFieldInput!): SaveAnalyticsFieldPayload
2685
+ removeAnalyticsField(
2686
+ input: RemoveAnalyticsFieldInput!
2687
+ ): RemoveAnalyticsFieldPayload
2367
2688
  saveWorkflow(input: SaveWorkflowInput!): SaveWorkflowPayload
2368
2689
  addWorkflowFlow(input: AddWorkflowFlowInput!): AddWorkflowFlowPayload
2369
2690
  removeFlow(input: RemoveFlowInput!): RemoveFlowPayload
@@ -2380,11 +2701,13 @@ type Mutation {
2380
2701
  cancelCase(input: CancelCaseInput!): CancelCasePayload
2381
2702
  suspendCase(input: SuspendCaseInput!): SuspendCasePayload
2382
2703
  resumeCase(input: ResumeCaseInput!): ResumeCasePayload
2704
+ reopenCase(input: ReopenCaseInput!): ReopenCasePayload
2383
2705
  completeWorkItem(input: CompleteWorkItemInput!): CompleteWorkItemPayload
2384
2706
  skipWorkItem(input: SkipWorkItemInput!): SkipWorkItemPayload
2385
2707
  cancelWorkItem(input: CancelWorkItemInput!): CancelWorkItemPayload
2386
2708
  suspendWorkItem(input: SuspendWorkItemInput!): SuspendWorkItemPayload
2387
2709
  resumeWorkItem(input: ResumeWorkItemInput!): ResumeWorkItemPayload
2710
+ redoWorkItem(input: RedoWorkItemInput!): RedoWorkItemPayload
2388
2711
  saveWorkItem(input: SaveWorkItemInput!): SaveWorkItemPayload
2389
2712
  createWorkItem(input: CreateWorkItemInput!): CreateWorkItemPayload
2390
2713
  saveForm(input: SaveFormInput!): SaveFormPayload
@@ -2483,7 +2806,7 @@ An object with an ID
2483
2806
  """
2484
2807
  interface Node {
2485
2808
  """
2486
- The ID of the object.
2809
+ The ID of the object
2487
2810
  """
2488
2811
  id: ID!
2489
2812
  }
@@ -2506,7 +2829,7 @@ type Option implements Node {
2506
2829
  source: Option
2507
2830
 
2508
2831
  """
2509
- The ID of the object.
2832
+ The ID of the object
2510
2833
  """
2511
2834
  id: ID!
2512
2835
  }
@@ -2640,126 +2963,187 @@ type PageInfo {
2640
2963
  }
2641
2964
 
2642
2965
  type Query {
2966
+ allAnalyticsTables(
2967
+ offset: Int = null
2968
+ before: String = null
2969
+ after: String = null
2970
+ first: Int = null
2971
+ last: Int = null
2972
+ metaValue: [JSONValueFilterType] = null
2973
+ slug: String = null
2974
+ name: String = null
2975
+ filter: [AnalyticsTableFilterSetType] = null
2976
+ 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
+ ): AnalyticsTableConnection
2995
+ analyticsTable(slug: String!): AnalyticsTable
2996
+ allAnalyticsFields(
2997
+ offset: Int = null
2998
+ before: String = null
2999
+ after: String = null
3000
+ first: Int = null
3001
+ last: Int = null
3002
+ metaValue: [JSONValueFilterType] = null
3003
+ alias: String = null
3004
+ table: ID = null
3005
+ filter: [AnalyticsFieldFilterSetType] = null
3006
+ createdByUser: String = null
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
3023
+ ): AnalyticsFieldConnection
2643
3024
  allDataSources(
2644
- before: String
2645
- after: String
2646
- first: Int
2647
- last: Int
3025
+ before: String = null
3026
+ after: String = null
3027
+ first: Int = null
3028
+ last: Int = null
2648
3029
  ): DataSourceConnection
2649
3030
  dataSource(
2650
3031
  name: String!
2651
- before: String
2652
- after: String
2653
- first: Int
2654
- last: Int
3032
+ before: String = null
3033
+ after: String = null
3034
+ first: Int = null
3035
+ last: Int = null
2655
3036
  ): DataSourceDataConnection
2656
3037
  allWorkflows(
2657
- before: String
2658
- after: String
2659
- first: Int
2660
- last: Int
2661
- metaValue: [JSONValueFilterType]
2662
- slug: String
2663
- name: String
2664
- description: String
2665
- isPublished: Boolean
2666
- isArchived: Boolean
3038
+ offset: Int = null
3039
+ before: String = null
3040
+ after: String = null
3041
+ first: Int = null
3042
+ 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
2667
3049
 
2668
3050
  """
2669
3051
  WorkflowOrdering
2670
3052
  """
2671
- orderBy: [WorkflowOrdering]
2672
- filter: [WorkflowFilterSetType]
2673
- order: [WorkflowOrderSetType]
2674
- createdByUser: String
2675
- createdByGroup: String
2676
- modifiedByUser: String
2677
- modifiedByGroup: String
3053
+ orderBy: [WorkflowOrdering] = null
3054
+ filter: [WorkflowFilterSetType] = null
3055
+ order: [WorkflowOrderSetType] = null
3056
+ createdByUser: String = null
3057
+ createdByGroup: String = null
3058
+ modifiedByUser: String = null
3059
+ modifiedByGroup: String = null
2678
3060
 
2679
3061
  """
2680
3062
  Only return entries created after the given DateTime (Exclusive)
2681
3063
  """
2682
- createdBefore: DateTime
3064
+ createdBefore: DateTime = null
2683
3065
 
2684
3066
  """
2685
3067
  Only return entries created at or before the given DateTime (Inclusive)
2686
3068
  """
2687
- createdAfter: DateTime
2688
- metaHasKey: String
2689
- search: String
3069
+ createdAfter: DateTime = null
3070
+ metaHasKey: String = null
3071
+ search: String = null
2690
3072
  ): WorkflowConnection
2691
3073
  allTasks(
2692
- before: String
2693
- after: String
2694
- first: Int
2695
- last: Int
2696
- metaValue: [JSONValueFilterType]
2697
- slug: String
2698
- name: String
2699
- description: String
2700
- type: TaskTypeArgument
2701
- isArchived: Boolean
3074
+ offset: Int = null
3075
+ before: String = null
3076
+ after: String = null
3077
+ first: Int = null
3078
+ 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
2702
3085
 
2703
3086
  """
2704
3087
  TaskOrdering
2705
3088
  """
2706
- orderBy: [TaskOrdering]
2707
- filter: [TaskFilterSetType]
2708
- order: [TaskOrderSetType]
2709
- createdByUser: String
2710
- createdByGroup: String
2711
- modifiedByUser: String
2712
- modifiedByGroup: String
3089
+ orderBy: [TaskOrdering] = null
3090
+ filter: [TaskFilterSetType] = null
3091
+ order: [TaskOrderSetType] = null
3092
+ createdByUser: String = null
3093
+ createdByGroup: String = null
3094
+ modifiedByUser: String = null
3095
+ modifiedByGroup: String = null
2713
3096
 
2714
3097
  """
2715
3098
  Only return entries created after the given DateTime (Exclusive)
2716
3099
  """
2717
- createdBefore: DateTime
3100
+ createdBefore: DateTime = null
2718
3101
 
2719
3102
  """
2720
3103
  Only return entries created at or before the given DateTime (Inclusive)
2721
3104
  """
2722
- createdAfter: DateTime
2723
- metaHasKey: String
2724
- search: String
3105
+ createdAfter: DateTime = null
3106
+ metaHasKey: String = null
3107
+ search: String = null
2725
3108
  ): TaskConnection
2726
3109
  allCases(
2727
- before: String
2728
- after: String
2729
- first: Int
2730
- last: Int
2731
- metaValue: [JSONValueFilterType]
2732
- workflow: ID
3110
+ offset: Int = null
3111
+ before: String = null
3112
+ after: String = null
3113
+ first: Int = null
3114
+ last: Int = null
3115
+ metaValue: [JSONValueFilterType] = null
3116
+ workflow: ID = null
2733
3117
 
2734
3118
  """
2735
3119
  CaseOrdering
2736
3120
  """
2737
- orderBy: [CaseOrdering]
2738
- filter: [CaseFilterSetType]
2739
- order: [CaseOrderSetType]
2740
- createdByUser: String
2741
- createdByGroup: String
2742
- modifiedByUser: String
2743
- modifiedByGroup: String
3121
+ orderBy: [CaseOrdering] = null
3122
+ filter: [CaseFilterSetType] = null
3123
+ order: [CaseOrderSetType] = null
3124
+ createdByUser: String = null
3125
+ createdByGroup: String = null
3126
+ modifiedByUser: String = null
3127
+ modifiedByGroup: String = null
2744
3128
 
2745
3129
  """
2746
3130
  Only return entries created after the given DateTime (Exclusive)
2747
3131
  """
2748
- createdBefore: DateTime
3132
+ createdBefore: DateTime = null
2749
3133
 
2750
3134
  """
2751
3135
  Only return entries created at or before the given DateTime (Inclusive)
2752
3136
  """
2753
- createdAfter: DateTime
2754
- metaHasKey: String
2755
- id: ID
2756
- documentForm: String
2757
- documentForms: [String]
2758
- hasAnswer: [HasAnswerFilterType]
2759
- workItemDocumentHasAnswer: [HasAnswerFilterType]
2760
- rootCase: ID
2761
- searchAnswers: [SearchAnswersFilterType]
2762
- status: [CaseStatusArgument]
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
2763
3147
 
2764
3148
  """
2765
3149
  Expects a question slug. If the slug is prefixed with a hyphen, the order will be reversed
@@ -2768,203 +3152,208 @@ type Query {
2768
3152
 
2769
3153
  Table questions are not supported at this time.
2770
3154
  """
2771
- orderByQuestionAnswerValue: String
3155
+ orderByQuestionAnswerValue: String = null
2772
3156
  ): CaseConnection
2773
3157
  allWorkItems(
2774
- before: String
2775
- after: String
2776
- first: Int
2777
- last: Int
2778
- metaValue: [JSONValueFilterType]
2779
- status: WorkItemStatusArgument
3158
+ offset: Int = null
3159
+ before: String = null
3160
+ after: String = null
3161
+ first: Int = null
3162
+ last: Int = null
3163
+ metaValue: [JSONValueFilterType] = null
3164
+ status: WorkItemStatusArgument = null
2780
3165
 
2781
3166
  """
2782
3167
  WorkItemOrdering
2783
3168
  """
2784
- orderBy: [WorkItemOrdering]
2785
- filter: [WorkItemFilterSetType]
2786
- order: [WorkItemOrderSetType]
2787
- documentHasAnswer: [HasAnswerFilterType]
2788
- caseDocumentHasAnswer: [HasAnswerFilterType]
2789
- caseMetaValue: [JSONValueFilterType]
2790
- rootCaseMetaValue: [JSONValueFilterType]
2791
- name: String
2792
- task: ID
2793
- tasks: [String]
2794
- case: ID
2795
- createdAt: DateTime
2796
- closedAt: DateTime
2797
- modifiedAt: DateTime
2798
- deadline: DateTime
2799
- hasDeadline: Boolean
2800
- caseFamily: ID
2801
- createdByUser: String
2802
- createdByGroup: String
2803
- modifiedByUser: String
2804
- modifiedByGroup: String
3169
+ orderBy: [WorkItemOrdering] = null
3170
+ filter: [WorkItemFilterSetType] = null
3171
+ 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
2805
3190
 
2806
3191
  """
2807
3192
  Only return entries created after the given DateTime (Exclusive)
2808
3193
  """
2809
- createdBefore: DateTime
3194
+ createdBefore: DateTime = null
2810
3195
 
2811
3196
  """
2812
3197
  Only return entries created at or before the given DateTime (Inclusive)
2813
3198
  """
2814
- createdAfter: DateTime
2815
- metaHasKey: String
2816
- id: ID
2817
- addressedGroups: [String]
2818
- controllingGroups: [String]
2819
- assignedUsers: [String]
3199
+ createdAfter: DateTime = null
3200
+ metaHasKey: String = null
3201
+ id: ID = null
3202
+ addressedGroups: [String] = null
3203
+ controllingGroups: [String] = null
3204
+ assignedUsers: [String] = null
2820
3205
  ): WorkItemConnection
2821
3206
  allForms(
2822
- before: String
2823
- after: String
2824
- first: Int
2825
- last: Int
2826
- metaValue: [JSONValueFilterType]
3207
+ offset: Int = null
3208
+ before: String = null
3209
+ after: String = null
3210
+ first: Int = null
3211
+ last: Int = null
3212
+ metaValue: [JSONValueFilterType] = null
2827
3213
 
2828
3214
  """
2829
3215
  FormOrdering
2830
3216
  """
2831
- orderBy: [FormOrdering]
2832
- slug: String
2833
- name: String
2834
- description: String
2835
- isPublished: Boolean
2836
- isArchived: Boolean
2837
- questions: [String]
2838
- filter: [FormFilterSetType]
2839
- order: [FormOrderSetType]
2840
- createdByUser: String
2841
- createdByGroup: String
2842
- modifiedByUser: String
2843
- modifiedByGroup: String
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
+ filter: [FormFilterSetType] = null
3225
+ order: [FormOrderSetType] = null
3226
+ createdByUser: String = null
3227
+ createdByGroup: String = null
3228
+ modifiedByUser: String = null
3229
+ modifiedByGroup: String = null
2844
3230
 
2845
3231
  """
2846
3232
  Only return entries created after the given DateTime (Exclusive)
2847
3233
  """
2848
- createdBefore: DateTime
3234
+ createdBefore: DateTime = null
2849
3235
 
2850
3236
  """
2851
3237
  Only return entries created at or before the given DateTime (Inclusive)
2852
3238
  """
2853
- createdAfter: DateTime
2854
- metaHasKey: String
2855
- search: String
2856
- slugs: [String]
3239
+ createdAfter: DateTime = null
3240
+ metaHasKey: String = null
3241
+ search: String = null
3242
+ slugs: [String] = null
2857
3243
  ): FormConnection
2858
3244
  allQuestions(
2859
- before: String
2860
- after: String
2861
- first: Int
2862
- last: Int
2863
- metaValue: [JSONValueFilterType]
3245
+ offset: Int = null
3246
+ before: String = null
3247
+ after: String = null
3248
+ first: Int = null
3249
+ last: Int = null
3250
+ metaValue: [JSONValueFilterType] = null
2864
3251
 
2865
3252
  """
2866
3253
  QuestionOrdering
2867
3254
  """
2868
- orderBy: [QuestionOrdering]
2869
- slug: String
2870
- label: String
2871
- isRequired: String
2872
- isHidden: String
2873
- isArchived: Boolean
2874
- subForm: ID
2875
- rowForm: ID
2876
- filter: [QuestionFilterSetType]
2877
- order: [QuestionOrderSetType]
2878
- createdByUser: String
2879
- createdByGroup: String
2880
- modifiedByUser: String
2881
- modifiedByGroup: String
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
+ filter: [QuestionFilterSetType] = null
3264
+ order: [QuestionOrderSetType] = null
3265
+ createdByUser: String = null
3266
+ createdByGroup: String = null
3267
+ modifiedByUser: String = null
3268
+ modifiedByGroup: String = null
2882
3269
 
2883
3270
  """
2884
3271
  Only return entries created after the given DateTime (Exclusive)
2885
3272
  """
2886
- createdBefore: DateTime
3273
+ createdBefore: DateTime = null
2887
3274
 
2888
3275
  """
2889
3276
  Only return entries created at or before the given DateTime (Inclusive)
2890
3277
  """
2891
- createdAfter: DateTime
2892
- metaHasKey: String
2893
- excludeForms: [ID]
2894
- search: String
2895
- slugs: [String]
3278
+ createdAfter: DateTime = null
3279
+ metaHasKey: String = null
3280
+ excludeForms: [ID] = null
3281
+ search: String = null
3282
+ slugs: [String] = null
2896
3283
  ): QuestionConnection
2897
3284
  allDocuments(
2898
- before: String
2899
- after: String
2900
- first: Int
2901
- last: Int
2902
- metaValue: [JSONValueFilterType]
2903
- form: ID
2904
- forms: [ID]
2905
- search: String
2906
- id: ID
3285
+ offset: Int = null
3286
+ before: String = null
3287
+ after: String = null
3288
+ first: Int = null
3289
+ last: Int = null
3290
+ metaValue: [JSONValueFilterType] = null
3291
+ form: ID = null
3292
+ forms: [ID] = null
3293
+ search: String = null
3294
+ id: ID = null
2907
3295
 
2908
3296
  """
2909
3297
  DocumentOrdering
2910
3298
  """
2911
- orderBy: [DocumentOrdering]
2912
- filter: [DocumentFilterSetType]
2913
- order: [DocumentOrderSetType]
2914
- createdByUser: String
2915
- createdByGroup: String
2916
- modifiedByUser: String
2917
- modifiedByGroup: String
3299
+ orderBy: [DocumentOrdering] = null
3300
+ filter: [DocumentFilterSetType] = null
3301
+ order: [DocumentOrderSetType] = null
3302
+ createdByUser: String = null
3303
+ createdByGroup: String = null
3304
+ modifiedByUser: String = null
3305
+ modifiedByGroup: String = null
2918
3306
 
2919
3307
  """
2920
3308
  Only return entries created after the given DateTime (Exclusive)
2921
3309
  """
2922
- createdBefore: DateTime
3310
+ createdBefore: DateTime = null
2923
3311
 
2924
3312
  """
2925
3313
  Only return entries created at or before the given DateTime (Inclusive)
2926
3314
  """
2927
- createdAfter: DateTime
2928
- metaHasKey: String
2929
- rootDocument: ID
2930
- hasAnswer: [HasAnswerFilterType]
2931
- searchAnswers: [SearchAnswersFilterType]
3315
+ createdAfter: DateTime = null
3316
+ metaHasKey: String = null
3317
+ rootDocument: ID = null
3318
+ hasAnswer: [HasAnswerFilterType] = null
3319
+ searchAnswers: [SearchAnswersFilterType] = null
2932
3320
  ): DocumentConnection
2933
3321
  allFormatValidators(
2934
- before: String
2935
- after: String
2936
- first: Int
2937
- last: Int
3322
+ before: String = null
3323
+ after: String = null
3324
+ first: Int = null
3325
+ last: Int = null
2938
3326
  ): FormatValidatorConnection
2939
3327
  allUsedDynamicOptions(
2940
- before: String
2941
- after: String
2942
- first: Int
2943
- last: Int
2944
- question: ID
2945
- document: ID
2946
- filter: [DynamicOptionFilterSetType]
2947
- createdByUser: String
2948
- createdByGroup: String
2949
- modifiedByUser: String
2950
- modifiedByGroup: String
3328
+ offset: Int = null
3329
+ before: String = null
3330
+ after: String = null
3331
+ first: Int = null
3332
+ last: Int = null
3333
+ question: ID = null
3334
+ document: ID = null
3335
+ filter: [DynamicOptionFilterSetType] = null
3336
+ createdByUser: String = null
3337
+ createdByGroup: String = null
3338
+ modifiedByUser: String = null
3339
+ modifiedByGroup: String = null
2951
3340
 
2952
3341
  """
2953
3342
  Only return entries created after the given DateTime (Exclusive)
2954
3343
  """
2955
- createdBefore: DateTime
3344
+ createdBefore: DateTime = null
2956
3345
 
2957
3346
  """
2958
3347
  Only return entries created at or before the given DateTime (Inclusive)
2959
3348
  """
2960
- createdAfter: DateTime
3349
+ createdAfter: DateTime = null
2961
3350
  ): DynamicOptionConnection
2962
3351
  documentValidity(
2963
3352
  id: ID!
2964
- before: String
2965
- after: String
2966
- first: Int
2967
- last: Int
3353
+ before: String = null
3354
+ after: String = null
3355
+ first: Int = null
3356
+ last: Int = null
2968
3357
  ): DocumentValidityConnection
2969
3358
  node(
2970
3359
  """
@@ -2995,39 +3384,40 @@ interface Question {
2995
3384
  isArchived: Boolean!
2996
3385
  meta: GenericScalar!
2997
3386
  forms(
2998
- before: String
2999
- after: String
3000
- first: Int
3001
- last: Int
3002
- slug: String
3003
- name: String
3004
- description: String
3005
- isPublished: Boolean
3006
- isArchived: Boolean
3007
- questions: [String]
3008
- createdByUser: String
3009
- createdByGroup: String
3010
- modifiedByUser: String
3011
- modifiedByGroup: String
3387
+ offset: Int = null
3388
+ before: String = null
3389
+ after: String = null
3390
+ first: Int = null
3391
+ last: Int = null
3392
+ slug: String = null
3393
+ name: String = null
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
3012
3402
 
3013
3403
  """
3014
3404
  Only return entries created after the given DateTime (Exclusive)
3015
3405
  """
3016
- createdBefore: DateTime
3406
+ createdBefore: DateTime = null
3017
3407
 
3018
3408
  """
3019
3409
  Only return entries created at or before the given DateTime (Inclusive)
3020
3410
  """
3021
- createdAfter: DateTime
3022
- metaHasKey: String
3023
- metaValue: [JSONValueFilterType]
3024
- search: String
3411
+ createdAfter: DateTime = null
3412
+ metaHasKey: String = null
3413
+ metaValue: [JSONValueFilterType] = null
3414
+ search: String = null
3025
3415
 
3026
3416
  """
3027
3417
  FormOrdering
3028
3418
  """
3029
- orderBy: [FormOrdering]
3030
- slugs: [String]
3419
+ orderBy: [FormOrdering] = null
3420
+ slugs: [String] = null
3031
3421
  ): FormConnection
3032
3422
  source: Question
3033
3423
  }
@@ -3183,6 +3573,41 @@ input QuestionOrderSetType {
3183
3573
  direction: AscDesc
3184
3574
  }
3185
3575
 
3576
+ input RedoWorkItemInput {
3577
+ id: ID!
3578
+
3579
+ """
3580
+ Provide extra context for dynamic jexl transforms and events
3581
+ """
3582
+ context: JSONString
3583
+ clientMutationId: String
3584
+ }
3585
+
3586
+ type RedoWorkItemPayload {
3587
+ workItem: WorkItem
3588
+ clientMutationId: String
3589
+ }
3590
+
3591
+ input RemoveAnalyticsFieldInput {
3592
+ id: ID!
3593
+ clientMutationId: String
3594
+ }
3595
+
3596
+ type RemoveAnalyticsFieldPayload {
3597
+ analyticsField: AnalyticsField
3598
+ clientMutationId: String
3599
+ }
3600
+
3601
+ input RemoveAnalyticsTableInput {
3602
+ slug: ID!
3603
+ clientMutationId: String
3604
+ }
3605
+
3606
+ type RemoveAnalyticsTablePayload {
3607
+ analyticsTable: AnalyticsTable
3608
+ clientMutationId: String
3609
+ }
3610
+
3186
3611
  input RemoveAnswerInput {
3187
3612
  answer: ID!
3188
3613
  clientMutationId: String
@@ -3234,6 +3659,22 @@ type RemoveFormQuestionPayload {
3234
3659
  clientMutationId: String
3235
3660
  }
3236
3661
 
3662
+ input ReopenCaseInput {
3663
+ id: ID!
3664
+ workItems: [ID]!
3665
+
3666
+ """
3667
+ Provide extra context for dynamic jexl transforms and events
3668
+ """
3669
+ context: JSONString
3670
+ clientMutationId: String
3671
+ }
3672
+
3673
+ type ReopenCasePayload {
3674
+ case: Case
3675
+ clientMutationId: String
3676
+ }
3677
+
3237
3678
  input ReorderFormQuestionsInput {
3238
3679
  form: ID!
3239
3680
  questions: [ID]!
@@ -3293,6 +3734,45 @@ type SaveActionButtonQuestionPayload {
3293
3734
  clientMutationId: String
3294
3735
  }
3295
3736
 
3737
+ input SaveAnalyticsFieldInput {
3738
+ id: ID
3739
+ alias: String!
3740
+ table: ID!
3741
+ dataSource: String!
3742
+ filters: [String]
3743
+ showOutput: Boolean
3744
+ meta: JSONString
3745
+ function: AggregateFunction!
3746
+ createdByUser: String
3747
+ createdByGroup: String
3748
+ modifiedByUser: String
3749
+ modifiedByGroup: String
3750
+ clientMutationId: String
3751
+ }
3752
+
3753
+ type SaveAnalyticsFieldPayload {
3754
+ analyticsField: AnalyticsField
3755
+ clientMutationId: String
3756
+ }
3757
+
3758
+ input SaveAnalyticsTableInput {
3759
+ slug: String!
3760
+ name: String!
3761
+ startingObject: StartingObject!
3762
+ disableVisibilities: Boolean
3763
+ meta: JSONString
3764
+ createdByUser: String
3765
+ createdByGroup: String
3766
+ modifiedByUser: String
3767
+ modifiedByGroup: String
3768
+ clientMutationId: String
3769
+ }
3770
+
3771
+ type SaveAnalyticsTablePayload {
3772
+ analyticsTable: AnalyticsTable
3773
+ clientMutationId: String
3774
+ }
3775
+
3296
3776
  input SaveCalculatedFloatQuestionInput {
3297
3777
  slug: String!
3298
3778
  label: String!
@@ -3302,6 +3782,7 @@ input SaveCalculatedFloatQuestionInput {
3302
3782
  meta: JSONString
3303
3783
  isArchived: Boolean
3304
3784
  calcExpression: QuestionJexl
3785
+ hintText: String
3305
3786
  clientMutationId: String
3306
3787
  }
3307
3788
 
@@ -3338,6 +3819,7 @@ input SaveChoiceQuestionInput {
3338
3819
  meta: JSONString
3339
3820
  isArchived: Boolean
3340
3821
  options: [ID]!
3822
+ hintText: String
3341
3823
  clientMutationId: String
3342
3824
  }
3343
3825
 
@@ -3374,6 +3856,11 @@ input SaveCompleteTaskFormTaskInput {
3374
3856
  `address_groups`.
3375
3857
  """
3376
3858
  isMultipleInstance: Boolean
3859
+
3860
+ """
3861
+ Whether to continue the flow if the multiple instance work item has ready siblings
3862
+ """
3863
+ continueAsync: Boolean
3377
3864
  form: ID!
3378
3865
  clientMutationId: String
3379
3866
  }
@@ -3411,6 +3898,11 @@ input SaveCompleteWorkflowFormTaskInput {
3411
3898
  `address_groups`.
3412
3899
  """
3413
3900
  isMultipleInstance: Boolean
3901
+
3902
+ """
3903
+ Whether to continue the flow if the multiple instance work item has ready siblings
3904
+ """
3905
+ continueAsync: Boolean
3414
3906
  clientMutationId: String
3415
3907
  }
3416
3908
 
@@ -3427,6 +3919,7 @@ input SaveDateQuestionInput {
3427
3919
  isHidden: QuestionJexl
3428
3920
  meta: JSONString
3429
3921
  isArchived: Boolean
3922
+ hintText: String
3430
3923
  clientMutationId: String
3431
3924
  }
3432
3925
 
@@ -3529,7 +4022,6 @@ input SaveDocumentFileAnswerInput {
3529
4022
  document: ID!
3530
4023
  meta: JSONString
3531
4024
  value: String
3532
- valueId: ID
3533
4025
  clientMutationId: String
3534
4026
  }
3535
4027
 
@@ -3628,6 +4120,7 @@ input SaveDynamicChoiceQuestionInput {
3628
4120
  meta: JSONString
3629
4121
  isArchived: Boolean
3630
4122
  dataSource: String!
4123
+ hintText: String
3631
4124
  clientMutationId: String
3632
4125
  }
3633
4126
 
@@ -3645,6 +4138,7 @@ input SaveDynamicMultipleChoiceQuestionInput {
3645
4138
  meta: JSONString
3646
4139
  isArchived: Boolean
3647
4140
  dataSource: String!
4141
+ hintText: String
3648
4142
  clientMutationId: String
3649
4143
  }
3650
4144
 
@@ -3661,6 +4155,7 @@ input SaveFileQuestionInput {
3661
4155
  isHidden: QuestionJexl
3662
4156
  meta: JSONString
3663
4157
  isArchived: Boolean
4158
+ hintText: String
3664
4159
  clientMutationId: String
3665
4160
  }
3666
4161
 
@@ -3680,6 +4175,7 @@ input SaveFloatQuestionInput {
3680
4175
  minValue: Float
3681
4176
  maxValue: Float
3682
4177
  placeholder: String
4178
+ hintText: String
3683
4179
  clientMutationId: String
3684
4180
  }
3685
4181
 
@@ -3731,6 +4227,7 @@ input SaveIntegerQuestionInput {
3731
4227
  minValue: Int
3732
4228
  maxValue: Int
3733
4229
  placeholder: String
4230
+ hintText: String
3734
4231
  clientMutationId: String
3735
4232
  }
3736
4233
 
@@ -3748,6 +4245,7 @@ input SaveMultipleChoiceQuestionInput {
3748
4245
  meta: JSONString
3749
4246
  isArchived: Boolean
3750
4247
  options: [ID]!
4248
+ hintText: String
3751
4249
  clientMutationId: String
3752
4250
  }
3753
4251
 
@@ -3797,6 +4295,11 @@ input SaveSimpleTaskInput {
3797
4295
  `address_groups`.
3798
4296
  """
3799
4297
  isMultipleInstance: Boolean
4298
+
4299
+ """
4300
+ Whether to continue the flow if the multiple instance work item has ready siblings
4301
+ """
4302
+ continueAsync: Boolean
3800
4303
  clientMutationId: String
3801
4304
  }
3802
4305
 
@@ -3834,6 +4337,7 @@ input SaveTableQuestionInput {
3834
4337
  Form that represents rows of a TableQuestion
3835
4338
  """
3836
4339
  rowForm: ID!
4340
+ hintText: String
3837
4341
  clientMutationId: String
3838
4342
  }
3839
4343
 
@@ -3853,6 +4357,7 @@ input SaveTextareaQuestionInput {
3853
4357
  minLength: Int
3854
4358
  maxLength: Int
3855
4359
  placeholder: String
4360
+ hintText: String
3856
4361
  formatValidators: [String]
3857
4362
  clientMutationId: String
3858
4363
  }
@@ -3873,6 +4378,7 @@ input SaveTextQuestionInput {
3873
4378
  minLength: Int
3874
4379
  maxLength: Int
3875
4380
  placeholder: String
4381
+ hintText: String
3876
4382
  formatValidators: [String]
3877
4383
  clientMutationId: String
3878
4384
  }
@@ -4002,7 +4508,6 @@ type SimpleTask implements Task & Node {
4002
4508
  slug: String!
4003
4509
  name: String!
4004
4510
  description: String
4005
- type: TaskType!
4006
4511
  meta: GenericScalar!
4007
4512
  addressGroups: GroupJexl
4008
4513
  controlGroups: GroupJexl
@@ -4013,9 +4518,10 @@ type SimpleTask implements Task & Node {
4013
4518
  """
4014
4519
  leadTime: Int
4015
4520
  isMultipleInstance: Boolean!
4521
+ continueAsync: Boolean
4016
4522
 
4017
4523
  """
4018
- The ID of the object.
4524
+ The ID of the object
4019
4525
  """
4020
4526
  id: ID!
4021
4527
  }
@@ -4035,6 +4541,17 @@ type SkipWorkItemPayload {
4035
4541
  clientMutationId: String
4036
4542
  }
4037
4543
 
4544
+ enum SortableAnalyticsTableAttributes {
4545
+ CREATED_AT
4546
+ MODIFIED_AT
4547
+ CREATED_BY_USER
4548
+ CREATED_BY_GROUP
4549
+ MODIFIED_BY_USER
4550
+ MODIFIED_BY_GROUP
4551
+ SLUG
4552
+ NAME
4553
+ }
4554
+
4038
4555
  enum SortableAnswerAttributes {
4039
4556
  CREATED_AT
4040
4557
  MODIFIED_AT
@@ -4101,6 +4618,7 @@ enum SortableQuestionAttributes {
4101
4618
  IS_ARCHIVED
4102
4619
  PLACEHOLDER
4103
4620
  INFO_TEXT
4621
+ HINT_TEXT
4104
4622
  CALC_EXPRESSION
4105
4623
  }
4106
4624
 
@@ -4162,6 +4680,15 @@ type StartCasePayload {
4162
4680
  clientMutationId: String
4163
4681
  }
4164
4682
 
4683
+ """
4684
+ An enumeration.
4685
+ """
4686
+ enum StartingObject {
4687
+ CASES
4688
+ WORK_ITEMS
4689
+ DOCUMENTS
4690
+ }
4691
+
4165
4692
  type StaticQuestion implements Question & Node {
4166
4693
  createdAt: DateTime!
4167
4694
  modifiedAt: DateTime!
@@ -4183,45 +4710,46 @@ type StaticQuestion implements Question & Node {
4183
4710
  meta: GenericScalar!
4184
4711
  source: Question
4185
4712
  forms(
4186
- before: String
4187
- after: String
4188
- first: Int
4189
- last: Int
4190
- metaValue: [JSONValueFilterType]
4713
+ offset: Int = null
4714
+ before: String = null
4715
+ after: String = null
4716
+ first: Int = null
4717
+ last: Int = null
4718
+ slug: String = null
4719
+ name: String = null
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
4191
4728
 
4192
4729
  """
4193
- FormOrdering
4730
+ Only return entries created after the given DateTime (Exclusive)
4194
4731
  """
4195
- orderBy: [FormOrdering]
4196
- slug: String
4197
- name: String
4198
- description: String
4199
- isPublished: Boolean
4200
- isArchived: Boolean
4201
- questions: [String]
4202
- createdByUser: String
4203
- createdByGroup: String
4204
- modifiedByUser: String
4205
- modifiedByGroup: String
4732
+ createdBefore: DateTime = null
4206
4733
 
4207
4734
  """
4208
- Only return entries created after the given DateTime (Exclusive)
4735
+ Only return entries created at or before the given DateTime (Inclusive)
4209
4736
  """
4210
- createdBefore: DateTime
4737
+ createdAfter: DateTime = null
4738
+ metaHasKey: String = null
4739
+ metaValue: [JSONValueFilterType] = null
4740
+ search: String = null
4211
4741
 
4212
4742
  """
4213
- Only return entries created at or before the given DateTime (Inclusive)
4743
+ FormOrdering
4214
4744
  """
4215
- createdAfter: DateTime
4216
- metaHasKey: String
4217
- search: String
4218
- slugs: [String]
4745
+ orderBy: [FormOrdering] = null
4746
+ slugs: [String] = null
4219
4747
  ): FormConnection
4220
4748
  staticContent: String
4221
4749
  dataSource: String
4222
4750
 
4223
4751
  """
4224
- The ID of the object.
4752
+ The ID of the object
4225
4753
  """
4226
4754
  id: ID!
4227
4755
  }
@@ -4254,6 +4782,11 @@ enum Status {
4254
4782
  Work item is suspended.
4255
4783
  """
4256
4784
  SUSPENDED
4785
+
4786
+ """
4787
+ Work item has been marked for redo.
4788
+ """
4789
+ REDO
4257
4790
  }
4258
4791
 
4259
4792
  type StringAnswer implements Answer & Node {
@@ -4265,7 +4798,7 @@ type StringAnswer implements Answer & Node {
4265
4798
  modifiedByGroup: String
4266
4799
 
4267
4800
  """
4268
- The ID of the object.
4801
+ The ID of the object
4269
4802
  """
4270
4803
  id: ID!
4271
4804
  question: Question!
@@ -4313,7 +4846,7 @@ type TableAnswer implements Answer & Node {
4313
4846
  modifiedByGroup: String
4314
4847
 
4315
4848
  """
4316
- The ID of the object.
4849
+ The ID of the object
4317
4850
  """
4318
4851
  id: ID!
4319
4852
  question: Question!
@@ -4339,43 +4872,45 @@ type TableQuestion implements Question & Node {
4339
4872
  isHidden: QuestionJexl!
4340
4873
  isArchived: Boolean!
4341
4874
  infoText: String
4875
+ hintText: String
4342
4876
  meta: GenericScalar!
4343
4877
  source: Question
4344
4878
  defaultAnswer: TableAnswer
4345
4879
  forms(
4346
- before: String
4347
- after: String
4348
- first: Int
4349
- last: Int
4350
- metaValue: [JSONValueFilterType]
4880
+ offset: Int = null
4881
+ before: String = null
4882
+ after: String = null
4883
+ first: Int = null
4884
+ last: Int = null
4885
+ slug: String = null
4886
+ name: String = null
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
4351
4895
 
4352
4896
  """
4353
- FormOrdering
4897
+ Only return entries created after the given DateTime (Exclusive)
4354
4898
  """
4355
- orderBy: [FormOrdering]
4356
- slug: String
4357
- name: String
4358
- description: String
4359
- isPublished: Boolean
4360
- isArchived: Boolean
4361
- questions: [String]
4362
- createdByUser: String
4363
- createdByGroup: String
4364
- modifiedByUser: String
4365
- modifiedByGroup: String
4899
+ createdBefore: DateTime = null
4366
4900
 
4367
4901
  """
4368
- Only return entries created after the given DateTime (Exclusive)
4902
+ Only return entries created at or before the given DateTime (Inclusive)
4369
4903
  """
4370
- createdBefore: DateTime
4904
+ createdAfter: DateTime = null
4905
+ metaHasKey: String = null
4906
+ metaValue: [JSONValueFilterType] = null
4907
+ search: String = null
4371
4908
 
4372
4909
  """
4373
- Only return entries created at or before the given DateTime (Inclusive)
4910
+ FormOrdering
4374
4911
  """
4375
- createdAfter: DateTime
4376
- metaHasKey: String
4377
- search: String
4378
- slugs: [String]
4912
+ orderBy: [FormOrdering] = null
4913
+ slugs: [String] = null
4379
4914
  ): FormConnection
4380
4915
 
4381
4916
  """
@@ -4384,7 +4919,7 @@ type TableQuestion implements Question & Node {
4384
4919
  rowForm: Form
4385
4920
 
4386
4921
  """
4387
- The ID of the object.
4922
+ The ID of the object
4388
4923
  """
4389
4924
  id: ID!
4390
4925
  }
@@ -4403,6 +4938,7 @@ interface Task {
4403
4938
  controlGroups: GroupJexl
4404
4939
  meta: GenericScalar!
4405
4940
  isMultipleInstance: Boolean!
4941
+ continueAsync: Boolean
4406
4942
  }
4407
4943
 
4408
4944
  type TaskConnection {
@@ -4553,26 +5089,6 @@ input TaskOrderSetType {
4553
5089
  direction: AscDesc
4554
5090
  }
4555
5091
 
4556
- """
4557
- An enumeration.
4558
- """
4559
- enum TaskType {
4560
- """
4561
- Task which can simply be marked as completed.
4562
- """
4563
- SIMPLE
4564
-
4565
- """
4566
- Task to complete a defined workflow form.
4567
- """
4568
- COMPLETE_WORKFLOW_FORM
4569
-
4570
- """
4571
- Task to complete a defined task form.
4572
- """
4573
- COMPLETE_TASK_FORM
4574
- }
4575
-
4576
5092
  """
4577
5093
  An enumeration.
4578
5094
  """
@@ -4611,53 +5127,55 @@ type TextareaQuestion implements Question & Node {
4611
5127
  isArchived: Boolean!
4612
5128
  placeholder: String
4613
5129
  infoText: String
5130
+ hintText: String
4614
5131
  meta: GenericScalar!
4615
5132
  source: Question
4616
5133
  formatValidators(
4617
- before: String
4618
- after: String
4619
- first: Int
4620
- last: Int
5134
+ before: String = null
5135
+ after: String = null
5136
+ first: Int = null
5137
+ last: Int = null
4621
5138
  ): FormatValidatorConnection
4622
5139
  defaultAnswer: StringAnswer
4623
5140
  forms(
4624
- before: String
4625
- after: String
4626
- first: Int
4627
- last: Int
4628
- metaValue: [JSONValueFilterType]
5141
+ offset: Int = null
5142
+ before: String = null
5143
+ after: String = null
5144
+ first: Int = null
5145
+ last: Int = null
5146
+ slug: String = null
5147
+ name: String = null
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
4629
5156
 
4630
5157
  """
4631
- FormOrdering
5158
+ Only return entries created after the given DateTime (Exclusive)
4632
5159
  """
4633
- orderBy: [FormOrdering]
4634
- slug: String
4635
- name: String
4636
- description: String
4637
- isPublished: Boolean
4638
- isArchived: Boolean
4639
- questions: [String]
4640
- createdByUser: String
4641
- createdByGroup: String
4642
- modifiedByUser: String
4643
- modifiedByGroup: String
5160
+ createdBefore: DateTime = null
4644
5161
 
4645
5162
  """
4646
- Only return entries created after the given DateTime (Exclusive)
5163
+ Only return entries created at or before the given DateTime (Inclusive)
4647
5164
  """
4648
- createdBefore: DateTime
5165
+ createdAfter: DateTime = null
5166
+ metaHasKey: String = null
5167
+ metaValue: [JSONValueFilterType] = null
5168
+ search: String = null
4649
5169
 
4650
5170
  """
4651
- Only return entries created at or before the given DateTime (Inclusive)
5171
+ FormOrdering
4652
5172
  """
4653
- createdAfter: DateTime
4654
- metaHasKey: String
4655
- search: String
4656
- slugs: [String]
5173
+ orderBy: [FormOrdering] = null
5174
+ slugs: [String] = null
4657
5175
  ): FormConnection
4658
5176
 
4659
5177
  """
4660
- The ID of the object.
5178
+ The ID of the object
4661
5179
  """
4662
5180
  id: ID!
4663
5181
  minLength: Int
@@ -4682,53 +5200,55 @@ type TextQuestion implements Question & Node {
4682
5200
  isArchived: Boolean!
4683
5201
  placeholder: String
4684
5202
  infoText: String
5203
+ hintText: String
4685
5204
  meta: GenericScalar!
4686
5205
  source: Question
4687
5206
  formatValidators(
4688
- before: String
4689
- after: String
4690
- first: Int
4691
- last: Int
5207
+ before: String = null
5208
+ after: String = null
5209
+ first: Int = null
5210
+ last: Int = null
4692
5211
  ): FormatValidatorConnection
4693
5212
  defaultAnswer: StringAnswer
4694
5213
  forms(
4695
- before: String
4696
- after: String
4697
- first: Int
4698
- last: Int
4699
- metaValue: [JSONValueFilterType]
5214
+ offset: Int = null
5215
+ before: String = null
5216
+ after: String = null
5217
+ first: Int = null
5218
+ last: Int = null
5219
+ slug: String = null
5220
+ name: String = null
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
4700
5229
 
4701
5230
  """
4702
- FormOrdering
5231
+ Only return entries created after the given DateTime (Exclusive)
4703
5232
  """
4704
- orderBy: [FormOrdering]
4705
- slug: String
4706
- name: String
4707
- description: String
4708
- isPublished: Boolean
4709
- isArchived: Boolean
4710
- questions: [String]
4711
- createdByUser: String
4712
- createdByGroup: String
4713
- modifiedByUser: String
4714
- modifiedByGroup: String
5233
+ createdBefore: DateTime = null
4715
5234
 
4716
5235
  """
4717
- Only return entries created after the given DateTime (Exclusive)
5236
+ Only return entries created at or before the given DateTime (Inclusive)
4718
5237
  """
4719
- createdBefore: DateTime
5238
+ createdAfter: DateTime = null
5239
+ metaHasKey: String = null
5240
+ metaValue: [JSONValueFilterType] = null
5241
+ search: String = null
4720
5242
 
4721
5243
  """
4722
- Only return entries created at or before the given DateTime (Inclusive)
5244
+ FormOrdering
4723
5245
  """
4724
- createdAfter: DateTime
4725
- metaHasKey: String
4726
- search: String
4727
- slugs: [String]
5246
+ orderBy: [FormOrdering] = null
5247
+ slugs: [String] = null
4728
5248
  ): FormConnection
4729
5249
 
4730
5250
  """
4731
- The ID of the object.
5251
+ The ID of the object
4732
5252
  """
4733
5253
  id: ID!
4734
5254
  minLength: Int
@@ -4790,14 +5310,15 @@ type Workflow implements Node {
4790
5310
  List of forms which are allowed to start workflow with
4791
5311
  """
4792
5312
  allowForms(
4793
- before: String
4794
- after: String
4795
- first: Int
4796
- last: Int
5313
+ offset: Int = null
5314
+ before: String = null
5315
+ after: String = null
5316
+ first: Int = null
5317
+ last: Int = null
4797
5318
  ): FormConnection!
4798
5319
 
4799
5320
  """
4800
- The ID of the object.
5321
+ The ID of the object
4801
5322
  """
4802
5323
  id: ID!
4803
5324
 
@@ -4806,26 +5327,27 @@ type Workflow implements Node {
4806
5327
  """
4807
5328
  tasks: [Task]!
4808
5329
  flows(
4809
- before: String
4810
- after: String
4811
- first: Int
4812
- last: Int
4813
- task: ID
4814
- filter: [FlowFilterSetType]
4815
- createdByUser: String
4816
- createdByGroup: String
4817
- modifiedByUser: String
4818
- modifiedByGroup: String
5330
+ offset: Int = null
5331
+ before: String = null
5332
+ after: String = null
5333
+ first: Int = null
5334
+ last: Int = null
5335
+ task: ID = null
5336
+ filter: [FlowFilterSetType] = null
5337
+ createdByUser: String = null
5338
+ createdByGroup: String = null
5339
+ modifiedByUser: String = null
5340
+ modifiedByGroup: String = null
4819
5341
 
4820
5342
  """
4821
5343
  Only return entries created after the given DateTime (Exclusive)
4822
5344
  """
4823
- createdBefore: DateTime
5345
+ createdBefore: DateTime = null
4824
5346
 
4825
5347
  """
4826
5348
  Only return entries created at or before the given DateTime (Inclusive)
4827
5349
  """
4828
- createdAfter: DateTime
5350
+ createdAfter: DateTime = null
4829
5351
  ): FlowConnection
4830
5352
  }
4831
5353
 
@@ -4976,7 +5498,7 @@ type WorkItem implements Node {
4976
5498
  modifiedByGroup: String
4977
5499
 
4978
5500
  """
4979
- The ID of the object.
5501
+ The ID of the object
4980
5502
  """
4981
5503
  id: ID!
4982
5504
 
@@ -5000,20 +5522,8 @@ type WorkItem implements Node {
5000
5522
  task: Task!
5001
5523
  status: WorkItemStatus!
5002
5524
  meta: GenericScalar
5003
-
5004
- """
5005
- Offer work item to be processed by a group of users, such are not committed to process it though.
5006
- """
5007
5525
  addressedGroups: [String]!
5008
-
5009
- """
5010
- List of groups this work item is assigned to for controlling.
5011
- """
5012
5526
  controllingGroups: [String]!
5013
-
5014
- """
5015
- Users responsible to undertake given work item.
5016
- """
5017
5527
  assignedUsers: [String]!
5018
5528
  case: Case!
5019
5529
 
@@ -5024,10 +5534,11 @@ type WorkItem implements Node {
5024
5534
  document: Document
5025
5535
  previousWorkItem: WorkItem
5026
5536
  succeedingWorkItems(
5027
- before: String
5028
- after: String
5029
- first: Int
5030
- last: Int
5537
+ offset: Int = null
5538
+ before: String = null
5539
+ after: String = null
5540
+ first: Int = null
5541
+ last: Int = null
5031
5542
  ): WorkItemConnection!
5032
5543
  }
5033
5544
 
@@ -5189,30 +5700,12 @@ input WorkItemOrderSetType {
5189
5700
  An enumeration.
5190
5701
  """
5191
5702
  enum WorkItemStatus {
5192
- """
5193
- Work item is ready to be processed.
5194
- """
5195
5703
  READY
5196
-
5197
- """
5198
- Work item is done.
5199
- """
5200
5704
  COMPLETED
5201
-
5202
- """
5203
- Work item is canceled.
5204
- """
5205
5705
  CANCELED
5206
-
5207
- """
5208
- Work item is skipped.
5209
- """
5210
5706
  SKIPPED
5211
-
5212
- """
5213
- Work item is suspended.
5214
- """
5215
5707
  SUSPENDED
5708
+ REDO
5216
5709
  }
5217
5710
 
5218
5711
  """
@@ -5243,4 +5736,9 @@ enum WorkItemStatusArgument {
5243
5736
  Work item is suspended.
5244
5737
  """
5245
5738
  SUSPENDED
5739
+
5740
+ """
5741
+ Work item has been marked for redo.
5742
+ """
5743
+ REDO
5246
5744
  }