@projectcaluma/ember-testing 11.0.0-beta.4 → 11.0.0-beta.40

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,17 @@ type ActionButtonQuestion implements Question & Node {
18
28
  meta: GenericScalar!
19
29
  source: Question
20
30
  forms(
31
+ offset: Int
21
32
  before: String
22
33
  after: String
23
34
  first: Int
24
35
  last: Int
25
- metaValue: [JSONValueFilterType]
26
-
27
- """
28
- FormOrdering
29
- """
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
41
-
42
- """
43
- Only return entries created after the given DateTime (Exclusive)
44
- """
45
- createdBefore: DateTime
46
-
47
- """
48
- Only return entries created at or before the given DateTime (Inclusive)
49
- """
50
- createdAfter: DateTime
51
- metaHasKey: String
52
- search: String
53
- slugs: [String]
36
+ filter: [FormFilterSetType]
37
+ order: [FormOrderSetType]
54
38
  ): FormConnection
55
39
 
56
40
  """
57
- The ID of the object.
41
+ The ID of the object
58
42
  """
59
43
  id: ID!
60
44
  action: ButtonAction!
@@ -80,6 +64,7 @@ input AddWorkflowFlowInput {
80
64
  workflow: ID!
81
65
  tasks: [ID]!
82
66
  next: FlowJexl!
67
+ redoable: FlowJexl
83
68
  clientMutationId: String
84
69
  }
85
70
 
@@ -88,19 +73,49 @@ type AddWorkflowFlowPayload {
88
73
  clientMutationId: String
89
74
  }
90
75
 
91
- interface Answer {
92
- id: ID
76
+ """
77
+ Aggregate function for pivot table
78
+ """
79
+ enum AggregateFunction {
80
+ VALUE
81
+ SUM
82
+ COUNT
83
+ AVG
84
+ MAX
85
+ MIN
86
+ }
87
+
88
+ """
89
+ A cell represents one value in the analytics output.
90
+ """
91
+ type AnalyticsCell {
92
+ alias: String
93
+ value: String
94
+ }
95
+
96
+ type AnalyticsField implements Node {
93
97
  createdAt: DateTime!
94
98
  modifiedAt: DateTime!
95
99
  createdByUser: String
96
100
  createdByGroup: String
97
101
  modifiedByUser: String
98
102
  modifiedByGroup: String
99
- question: Question!
100
- meta: GenericScalar!
103
+
104
+ """
105
+ The ID of the object
106
+ """
107
+ id: ID!
108
+ alias: String!
109
+ meta: GenericScalar
110
+ dataSource: String!
111
+ table: AnalyticsTable!
112
+ filters: [String]
113
+ function: AggregateFunction
114
+ showOutput: Boolean!
115
+ sort: Int!
101
116
  }
102
117
 
103
- type AnswerConnection {
118
+ type AnalyticsFieldConnection {
104
119
  """
105
120
  Pagination data for this connection.
106
121
  """
@@ -109,18 +124,18 @@ type AnswerConnection {
109
124
  """
110
125
  Contains the nodes in this connection.
111
126
  """
112
- edges: [AnswerEdge]!
127
+ edges: [AnalyticsFieldEdge]!
113
128
  totalCount: Int
114
129
  }
115
130
 
116
131
  """
117
- A Relay edge containing a `Answer` and its cursor.
132
+ A Relay edge containing a `AnalyticsField` and its cursor.
118
133
  """
119
- type AnswerEdge {
134
+ type AnalyticsFieldEdge {
120
135
  """
121
136
  The item at the end of the edge
122
137
  """
123
- node: Answer
138
+ node: AnalyticsField
124
139
 
125
140
  """
126
141
  A cursor for use in pagination
@@ -128,9 +143,9 @@ type AnswerEdge {
128
143
  cursor: String!
129
144
  }
130
145
 
131
- input AnswerFilterSetType {
132
- question: ID
133
- search: String
146
+ input AnalyticsFieldFilterSetType {
147
+ alias: String
148
+ table: ID
134
149
  createdByUser: String
135
150
  createdByGroup: String
136
151
  modifiedByUser: String
@@ -139,93 +154,239 @@ input AnswerFilterSetType {
139
154
  createdAfter: DateTime
140
155
  metaHasKey: String
141
156
  metaValue: [JSONValueFilterType]
142
- orderBy: [AnswerOrdering]
143
- questions: [ID]
144
- visibleInContext: Boolean
157
+ search: String
158
+ slugs: [String]
145
159
  invert: Boolean
146
160
  }
147
161
 
148
- enum AnswerHierarchyMode {
149
- DIRECT
150
- FAMILY
162
+ input AnalyticsFieldOrderSetType {
163
+ meta: String
164
+ attribute: SortableAnalyticsFieldAttributes
165
+ direction: AscDesc
151
166
  }
152
167
 
153
- enum AnswerLookupMode {
154
- EXACT
155
- STARTSWITH
156
- CONTAINS
157
- ICONTAINS
158
- INTERSECTS
159
- ISNULL
160
- GTE
161
- GT
162
- LTE
163
- LT
168
+ type AnalyticsOutput {
169
+ records(
170
+ before: String
171
+ after: String
172
+ first: Int
173
+ last: Int
174
+ ): AnalyticsTableContentConnection
175
+ summary: AnalyticsRowConnection
176
+ }
177
+
178
+ type AnalyticsRowConnection {
179
+ """
180
+ Pagination data for this connection.
181
+ """
182
+ pageInfo: PageInfo!
183
+
184
+ """
185
+ Contains the nodes in this connection.
186
+ """
187
+ edges: [AnalyticsRowEdge]!
164
188
  }
165
189
 
166
190
  """
167
- An enumeration.
191
+ A Relay edge containing a `AnalyticsRow` and its cursor.
168
192
  """
169
- enum AnswerOrdering {
193
+ type AnalyticsRowEdge {
194
+ """
195
+ The item at the end of the edge
196
+ """
197
+ node: AnalyticsCell
198
+
199
+ """
200
+ A cursor for use in pagination
201
+ """
202
+ cursor: String!
203
+ }
204
+
205
+ type AnalyticsTable implements Node {
206
+ createdAt: DateTime!
207
+ modifiedAt: DateTime!
208
+ createdByUser: String
209
+ createdByGroup: String
210
+ modifiedByUser: String
211
+ modifiedByGroup: String
212
+ slug: String!
213
+ meta: JSONString!
214
+ disableVisibilities: Boolean!
215
+ name: String!
216
+ startingObject: StartingObject
217
+ fields(
218
+ offset: Int
219
+ before: String
220
+ after: String
221
+ first: Int
222
+ last: Int
223
+ ): AnalyticsFieldConnection!
224
+
225
+ """
226
+ The ID of the object
227
+ """
228
+ id: ID!
229
+ availableFields(
230
+ prefix: String
231
+ depth: Int
232
+ before: String
233
+ after: String
234
+ first: Int
235
+ last: Int
236
+ ): AvailableFieldConnection
237
+ resultData: AnalyticsOutput
238
+ }
239
+
240
+ type AnalyticsTableConnection {
170
241
  """
171
- Created at
242
+ Pagination data for this connection.
172
243
  """
173
- CREATED_AT_ASC
244
+ pageInfo: PageInfo!
174
245
 
175
246
  """
176
- Created at (descending)
247
+ Contains the nodes in this connection.
177
248
  """
178
- CREATED_AT_DESC
249
+ edges: [AnalyticsTableEdge]!
250
+ totalCount: Int
251
+ }
179
252
 
253
+ type AnalyticsTableContentConnection {
180
254
  """
181
- Modified at
255
+ Pagination data for this connection.
182
256
  """
183
- MODIFIED_AT_ASC
257
+ pageInfo: PageInfo!
184
258
 
185
259
  """
186
- Modified at (descending)
260
+ Contains the nodes in this connection.
187
261
  """
188
- MODIFIED_AT_DESC
262
+ edges: [AnalyticsTableContentEdge]!
263
+ }
189
264
 
265
+ """
266
+ A Relay edge containing a `AnalyticsTableContent` and its cursor.
267
+ """
268
+ type AnalyticsTableContentEdge {
190
269
  """
191
- Created by user
270
+ The item at the end of the edge
192
271
  """
193
- CREATED_BY_USER_ASC
272
+ node: AnalyticsRowConnection
194
273
 
195
274
  """
196
- Created by user (descending)
275
+ A cursor for use in pagination
197
276
  """
198
- CREATED_BY_USER_DESC
277
+ cursor: String!
278
+ }
199
279
 
280
+ """
281
+ A Relay edge containing a `AnalyticsTable` and its cursor.
282
+ """
283
+ type AnalyticsTableEdge {
200
284
  """
201
- Created by group
285
+ The item at the end of the edge
202
286
  """
203
- CREATED_BY_GROUP_ASC
287
+ node: AnalyticsTable
204
288
 
205
289
  """
206
- Created by group (descending)
290
+ A cursor for use in pagination
207
291
  """
208
- CREATED_BY_GROUP_DESC
292
+ cursor: String!
293
+ }
209
294
 
295
+ input AnalyticsTableFilterSetType {
296
+ slug: String
297
+ name: String
298
+ createdByUser: String
299
+ createdByGroup: String
300
+ modifiedByUser: String
301
+ modifiedByGroup: String
302
+ createdBefore: DateTime
303
+ createdAfter: DateTime
304
+ metaHasKey: String
305
+ metaValue: [JSONValueFilterType]
306
+ search: String
307
+ slugs: [String]
308
+ invert: Boolean
309
+ }
310
+
311
+ input AnalyticsTableOrderSetType {
312
+ meta: String
313
+ attribute: SortableAnalyticsTableAttributes
314
+ direction: AscDesc
315
+ }
316
+
317
+ interface Answer {
318
+ id: ID
319
+ createdAt: DateTime!
320
+ modifiedAt: DateTime!
321
+ createdByUser: String
322
+ createdByGroup: String
323
+ modifiedByUser: String
324
+ modifiedByGroup: String
325
+ question: Question!
326
+ meta: GenericScalar!
327
+ }
328
+
329
+ type AnswerConnection {
210
330
  """
211
- Modified by user
331
+ Pagination data for this connection.
212
332
  """
213
- MODIFIED_BY_USER_ASC
333
+ pageInfo: PageInfo!
214
334
 
215
335
  """
216
- Modified by user (descending)
336
+ Contains the nodes in this connection.
217
337
  """
218
- MODIFIED_BY_USER_DESC
338
+ edges: [AnswerEdge]!
339
+ totalCount: Int
340
+ }
219
341
 
342
+ """
343
+ A Relay edge containing a `Answer` and its cursor.
344
+ """
345
+ type AnswerEdge {
220
346
  """
221
- Modified by group
347
+ The item at the end of the edge
222
348
  """
223
- MODIFIED_BY_GROUP_ASC
349
+ node: Answer
224
350
 
225
351
  """
226
- Modified by group (descending)
352
+ A cursor for use in pagination
227
353
  """
228
- MODIFIED_BY_GROUP_DESC
354
+ cursor: String!
355
+ }
356
+
357
+ input AnswerFilterSetType {
358
+ question: ID
359
+ search: String
360
+ createdByUser: String
361
+ createdByGroup: String
362
+ modifiedByUser: String
363
+ modifiedByGroup: String
364
+ createdBefore: DateTime
365
+ createdAfter: DateTime
366
+ metaHasKey: String
367
+ metaValue: [JSONValueFilterType]
368
+ questions: [ID]
369
+ visibleInContext: Boolean
370
+ invert: Boolean
371
+ }
372
+
373
+ enum AnswerHierarchyMode {
374
+ DIRECT
375
+ FAMILY
376
+ }
377
+
378
+ enum AnswerLookupMode {
379
+ EXACT
380
+ STARTSWITH
381
+ CONTAINS
382
+ ICONTAINS
383
+ INTERSECTS
384
+ ISNULL
385
+ IN
386
+ GTE
387
+ GT
388
+ LTE
389
+ LT
229
390
  }
230
391
 
231
392
  input AnswerOrderSetType {
@@ -239,6 +400,59 @@ enum AscDesc {
239
400
  DESC
240
401
  }
241
402
 
403
+ """
404
+ Available fields show users what can be selected in an analysis.
405
+
406
+ The main identifier is the source path, but for display purposes,
407
+ a label (field at current position) and a full_label (including
408
+ parent fields' labels) is available.
409
+
410
+ Frontends should query sub-fields (via prefix/depth) if is_leaf is
411
+ False. Some fields can be non-leafs as well as values, such as
412
+ dates: Dates can be extracted "as is", or we can extract a
413
+ date part (such as year, quarter, ...) from it.
414
+ """
415
+ type AvailableField implements Node {
416
+ """
417
+ The ID of the object
418
+ """
419
+ id: ID!
420
+ label: String
421
+ fullLabel: String
422
+ sourcePath: String
423
+ isLeaf: Boolean
424
+ isValue: Boolean
425
+ supportedFunctions: [AggregateFunction]
426
+ }
427
+
428
+ type AvailableFieldConnection {
429
+ """
430
+ Pagination data for this connection.
431
+ """
432
+ pageInfo: PageInfo!
433
+
434
+ """
435
+ Contains the nodes in this connection.
436
+ """
437
+ edges: [AvailableFieldEdge]!
438
+ totalCount: Int
439
+ }
440
+
441
+ """
442
+ A Relay edge containing a `AvailableField` and its cursor.
443
+ """
444
+ type AvailableFieldEdge {
445
+ """
446
+ The item at the end of the edge
447
+ """
448
+ node: AvailableField
449
+
450
+ """
451
+ A cursor for use in pagination
452
+ """
453
+ cursor: String!
454
+ }
455
+
242
456
  """
243
457
  An enumeration.
244
458
  """
@@ -273,47 +487,22 @@ type CalculatedFloatQuestion implements Question & Node {
273
487
  isHidden: QuestionJexl!
274
488
  isArchived: Boolean!
275
489
  infoText: String
490
+ hintText: String
276
491
  meta: GenericScalar!
277
492
  source: Question
278
493
  forms(
494
+ offset: Int
279
495
  before: String
280
496
  after: String
281
497
  first: Int
282
498
  last: Int
283
- metaValue: [JSONValueFilterType]
284
-
285
- """
286
- FormOrdering
287
- """
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
299
-
300
- """
301
- Only return entries created after the given DateTime (Exclusive)
302
- """
303
- createdBefore: DateTime
304
-
305
- """
306
- Only return entries created at or before the given DateTime (Inclusive)
307
- """
308
- createdAfter: DateTime
309
- metaHasKey: String
310
- search: String
311
- slugs: [String]
499
+ filter: [FormFilterSetType]
500
+ order: [FormOrderSetType]
312
501
  ): FormConnection
313
502
  calcExpression: String
314
503
 
315
504
  """
316
- The ID of the object.
505
+ The ID of the object
317
506
  """
318
507
  id: ID!
319
508
  }
@@ -357,10 +546,15 @@ type Case implements Node {
357
546
  modifiedByGroup: String
358
547
 
359
548
  """
360
- The ID of the object.
549
+ The ID of the object
361
550
  """
362
551
  id: ID!
363
552
 
553
+ """
554
+ Family id which case belongs to.
555
+ """
556
+ family: Case
557
+
364
558
  """
365
559
  Time when case has either been canceled or completed
366
560
  """
@@ -372,101 +566,23 @@ type Case implements Node {
372
566
  meta: GenericScalar
373
567
  document: Document
374
568
  workItems(
569
+ offset: Int
375
570
  before: String
376
571
  after: String
377
572
  first: Int
378
573
  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
391
-
392
- """
393
- WorkItemOrdering
394
- """
395
- orderBy: [WorkItemOrdering]
396
574
  filter: [WorkItemFilterSetType]
397
575
  order: [WorkItemOrderSetType]
398
- createdByUser: String
399
- createdByGroup: String
400
- modifiedByUser: String
401
- modifiedByGroup: String
402
-
403
- """
404
- Only return entries created after the given DateTime (Exclusive)
405
- """
406
- createdBefore: DateTime
407
-
408
- """
409
- Only return entries created at or before the given DateTime (Inclusive)
410
- """
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]
421
576
  ): WorkItemConnection
422
577
  parentWorkItem: WorkItem
423
578
  familyWorkItems(
579
+ offset: Int
424
580
  before: String
425
581
  after: String
426
582
  first: Int
427
583
  last: Int
428
- metaValue: [JSONValueFilterType]
429
- status: WorkItemStatusArgument
430
-
431
- """
432
- WorkItemOrdering
433
- """
434
- orderBy: [WorkItemOrdering]
435
584
  filter: [WorkItemFilterSetType]
436
585
  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
455
-
456
- """
457
- Only return entries created after the given DateTime (Exclusive)
458
- """
459
- createdBefore: DateTime
460
-
461
- """
462
- Only return entries created at or before the given DateTime (Inclusive)
463
- """
464
- createdAfter: DateTime
465
- metaHasKey: String
466
- id: ID
467
- addressedGroups: [String]
468
- controllingGroups: [String]
469
- assignedUsers: [String]
470
586
  ): WorkItemConnection
471
587
  }
472
588
 
@@ -509,7 +625,7 @@ input CaseFilterSetType {
509
625
  metaHasKey: String
510
626
  metaValue: [JSONValueFilterType]
511
627
  id: ID
512
- orderBy: [CaseOrdering]
628
+ ids: [ID]
513
629
  documentForm: String
514
630
  documentForms: [String]
515
631
  hasAnswer: [HasAnswerFilterType]
@@ -517,85 +633,10 @@ input CaseFilterSetType {
517
633
  rootCase: ID
518
634
  searchAnswers: [SearchAnswersFilterType]
519
635
  status: [CaseStatusArgument]
520
- orderByQuestionAnswerValue: String
636
+ excludeChildCases: Boolean
521
637
  invert: Boolean
522
638
  }
523
639
 
524
- """
525
- An enumeration.
526
- """
527
- enum CaseOrdering {
528
- """
529
- Status
530
- """
531
- STATUS_ASC
532
-
533
- """
534
- Status (descending)
535
- """
536
- STATUS_DESC
537
-
538
- """
539
- Created at
540
- """
541
- CREATED_AT_ASC
542
-
543
- """
544
- Created at (descending)
545
- """
546
- CREATED_AT_DESC
547
-
548
- """
549
- Modified at
550
- """
551
- MODIFIED_AT_ASC
552
-
553
- """
554
- Modified at (descending)
555
- """
556
- MODIFIED_AT_DESC
557
-
558
- """
559
- Created by user
560
- """
561
- CREATED_BY_USER_ASC
562
-
563
- """
564
- Created by user (descending)
565
- """
566
- CREATED_BY_USER_DESC
567
-
568
- """
569
- Created by group
570
- """
571
- CREATED_BY_GROUP_ASC
572
-
573
- """
574
- Created by group (descending)
575
- """
576
- CREATED_BY_GROUP_DESC
577
-
578
- """
579
- Modified by user
580
- """
581
- MODIFIED_BY_USER_ASC
582
-
583
- """
584
- Modified by user (descending)
585
- """
586
- MODIFIED_BY_USER_DESC
587
-
588
- """
589
- Modified by group
590
- """
591
- MODIFIED_BY_GROUP_ASC
592
-
593
- """
594
- Modified by group (descending)
595
- """
596
- MODIFIED_BY_GROUP_DESC
597
- }
598
-
599
640
  input CaseOrderSetType {
600
641
  meta: String
601
642
  attribute: SortableCaseAttributes
@@ -607,24 +648,9 @@ input CaseOrderSetType {
607
648
  An enumeration.
608
649
  """
609
650
  enum CaseStatus {
610
- """
611
- Case is running and work items need to be completed.
612
- """
613
651
  RUNNING
614
-
615
- """
616
- Case is done.
617
- """
618
652
  COMPLETED
619
-
620
- """
621
- Case is canceled.
622
- """
623
653
  CANCELED
624
-
625
- """
626
- Case is suspended.
627
- """
628
654
  SUSPENDED
629
655
  }
630
656
 
@@ -670,78 +696,31 @@ type ChoiceQuestion implements Question & Node {
670
696
  isHidden: QuestionJexl!
671
697
  isArchived: Boolean!
672
698
  infoText: String
699
+ hintText: String
673
700
  meta: GenericScalar!
674
701
  source: Question
675
702
  defaultAnswer: StringAnswer
676
703
  forms(
704
+ offset: Int
677
705
  before: String
678
706
  after: String
679
707
  first: Int
680
708
  last: Int
681
- metaValue: [JSONValueFilterType]
682
-
683
- """
684
- FormOrdering
685
- """
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
697
-
698
- """
699
- Only return entries created after the given DateTime (Exclusive)
700
- """
701
- createdBefore: DateTime
702
-
703
- """
704
- Only return entries created at or before the given DateTime (Inclusive)
705
- """
706
- createdAfter: DateTime
707
- metaHasKey: String
708
- search: String
709
- slugs: [String]
709
+ filter: [FormFilterSetType]
710
+ order: [FormOrderSetType]
710
711
  ): FormConnection
711
712
  options(
713
+ offset: Int
712
714
  before: String
713
715
  after: String
714
716
  first: Int
715
717
  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
724
-
725
- """
726
- Only return entries created after the given DateTime (Exclusive)
727
- """
728
- createdBefore: DateTime
729
-
730
- """
731
- Only return entries created at or before the given DateTime (Inclusive)
732
- """
733
- createdAfter: DateTime
734
- metaHasKey: String
735
- search: String
736
-
737
- """
738
- OptionOrdering
739
- """
740
- orderBy: [OptionOrdering]
718
+ filter: [OptionFilterSetType]
719
+ order: [OptionOrderSetType]
741
720
  ): OptionConnection
742
721
 
743
722
  """
744
- The ID of the object.
723
+ The ID of the object
745
724
  """
746
725
  id: ID!
747
726
  }
@@ -756,7 +735,6 @@ type CompleteTaskFormTask implements Task & Node {
756
735
  slug: String!
757
736
  name: String!
758
737
  description: String
759
- type: TaskType!
760
738
  meta: GenericScalar!
761
739
  addressGroups: GroupJexl
762
740
  controlGroups: GroupJexl
@@ -767,10 +745,11 @@ type CompleteTaskFormTask implements Task & Node {
767
745
  """
768
746
  leadTime: Int
769
747
  isMultipleInstance: Boolean!
748
+ continueAsync: Boolean
770
749
  form: Form!
771
750
 
772
751
  """
773
- The ID of the object.
752
+ The ID of the object
774
753
  """
775
754
  id: ID!
776
755
  }
@@ -785,7 +764,6 @@ type CompleteWorkflowFormTask implements Task & Node {
785
764
  slug: String!
786
765
  name: String!
787
766
  description: String
788
- type: TaskType!
789
767
  meta: GenericScalar!
790
768
  addressGroups: GroupJexl
791
769
  controlGroups: GroupJexl
@@ -796,9 +774,10 @@ type CompleteWorkflowFormTask implements Task & Node {
796
774
  """
797
775
  leadTime: Int
798
776
  isMultipleInstance: Boolean!
777
+ continueAsync: Boolean
799
778
 
800
779
  """
801
- The ID of the object.
780
+ The ID of the object
802
781
  """
803
782
  id: ID!
804
783
  }
@@ -983,7 +962,7 @@ type DateAnswer implements Answer & Node {
983
962
  modifiedByGroup: String
984
963
 
985
964
  """
986
- The ID of the object.
965
+ The ID of the object
987
966
  """
988
967
  id: ID!
989
968
  question: Question!
@@ -1009,47 +988,22 @@ type DateQuestion implements Question & Node {
1009
988
  isHidden: QuestionJexl!
1010
989
  isArchived: Boolean!
1011
990
  infoText: String
991
+ hintText: String
1012
992
  meta: GenericScalar!
1013
993
  source: Question
1014
994
  defaultAnswer: DateAnswer
1015
995
  forms(
996
+ offset: Int
1016
997
  before: String
1017
998
  after: String
1018
999
  first: Int
1019
1000
  last: Int
1020
- metaValue: [JSONValueFilterType]
1021
-
1022
- """
1023
- FormOrdering
1024
- """
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
1036
-
1037
- """
1038
- Only return entries created after the given DateTime (Exclusive)
1039
- """
1040
- createdBefore: DateTime
1041
-
1042
- """
1043
- Only return entries created at or before the given DateTime (Inclusive)
1044
- """
1045
- createdAfter: DateTime
1046
- metaHasKey: String
1047
- search: String
1048
- slugs: [String]
1001
+ filter: [FormFilterSetType]
1002
+ order: [FormOrderSetType]
1049
1003
  ): FormConnection
1050
1004
 
1051
1005
  """
1052
- The ID of the object.
1006
+ The ID of the object
1053
1007
  """
1054
1008
  id: ID!
1055
1009
  }
@@ -1155,7 +1109,7 @@ type Document implements Node {
1155
1109
  modifiedByGroup: String
1156
1110
 
1157
1111
  """
1158
- The ID of the object.
1112
+ The ID of the object
1159
1113
  """
1160
1114
  id: ID!
1161
1115
  form: Form!
@@ -1170,43 +1124,20 @@ type Document implements Node {
1170
1124
  Reference this document has been copied from
1171
1125
  """
1172
1126
  copies(
1127
+ offset: Int
1173
1128
  before: String
1174
1129
  after: String
1175
1130
  first: Int
1176
1131
  last: Int
1177
1132
  ): DocumentConnection!
1178
1133
  answers(
1134
+ offset: Int
1179
1135
  before: String
1180
1136
  after: String
1181
1137
  first: Int
1182
1138
  last: Int
1183
- metaValue: [JSONValueFilterType]
1184
- question: ID
1185
- search: String
1186
-
1187
- """
1188
- AnswerOrdering
1189
- """
1190
- orderBy: [AnswerOrdering]
1191
1139
  filter: [AnswerFilterSetType]
1192
1140
  order: [AnswerOrderSetType]
1193
- createdByUser: String
1194
- createdByGroup: String
1195
- modifiedByUser: String
1196
- modifiedByGroup: String
1197
-
1198
- """
1199
- Only return entries created after the given DateTime (Exclusive)
1200
- """
1201
- createdBefore: DateTime
1202
-
1203
- """
1204
- Only return entries created at or before the given DateTime (Inclusive)
1205
- """
1206
- createdAfter: DateTime
1207
- metaHasKey: String
1208
- questions: [ID]
1209
- visibleInContext: Boolean
1210
1141
  ): AnswerConnection
1211
1142
  case: Case
1212
1143
  workItem: WorkItem
@@ -1215,117 +1146,51 @@ type Document implements Node {
1215
1146
  modifiedContentByGroup: String
1216
1147
  }
1217
1148
 
1218
- type DocumentConnection {
1219
- """
1220
- Pagination data for this connection.
1221
- """
1222
- pageInfo: PageInfo!
1223
-
1224
- """
1225
- Contains the nodes in this connection.
1226
- """
1227
- edges: [DocumentEdge]!
1228
- totalCount: Int
1229
- }
1230
-
1231
- """
1232
- A Relay edge containing a `Document` and its cursor.
1233
- """
1234
- type DocumentEdge {
1235
- """
1236
- The item at the end of the edge
1237
- """
1238
- node: Document
1239
-
1240
- """
1241
- A cursor for use in pagination
1242
- """
1243
- cursor: String!
1244
- }
1245
-
1246
- input DocumentFilterSetType {
1247
- form: ID
1248
- forms: [ID]
1249
- search: String
1250
- id: ID
1251
- createdByUser: String
1252
- createdByGroup: String
1253
- modifiedByUser: String
1254
- modifiedByGroup: String
1255
- createdBefore: DateTime
1256
- createdAfter: DateTime
1257
- metaHasKey: String
1258
- metaValue: [JSONValueFilterType]
1259
- orderBy: [DocumentOrdering]
1260
- rootDocument: ID
1261
- hasAnswer: [HasAnswerFilterType]
1262
- searchAnswers: [SearchAnswersFilterType]
1263
- invert: Boolean
1264
- }
1265
-
1266
- """
1267
- An enumeration.
1268
- """
1269
- enum DocumentOrdering {
1270
- """
1271
- Created at
1272
- """
1273
- CREATED_AT_ASC
1274
-
1275
- """
1276
- Created at (descending)
1277
- """
1278
- CREATED_AT_DESC
1279
-
1280
- """
1281
- Modified at
1282
- """
1283
- MODIFIED_AT_ASC
1284
-
1285
- """
1286
- Modified at (descending)
1287
- """
1288
- MODIFIED_AT_DESC
1289
-
1290
- """
1291
- Created by user
1292
- """
1293
- CREATED_BY_USER_ASC
1294
-
1295
- """
1296
- Created by user (descending)
1297
- """
1298
- CREATED_BY_USER_DESC
1299
-
1300
- """
1301
- Created by group
1302
- """
1303
- CREATED_BY_GROUP_ASC
1304
-
1149
+ type DocumentConnection {
1305
1150
  """
1306
- Created by group (descending)
1151
+ Pagination data for this connection.
1307
1152
  """
1308
- CREATED_BY_GROUP_DESC
1153
+ pageInfo: PageInfo!
1309
1154
 
1310
1155
  """
1311
- Modified by user
1156
+ Contains the nodes in this connection.
1312
1157
  """
1313
- MODIFIED_BY_USER_ASC
1158
+ edges: [DocumentEdge]!
1159
+ totalCount: Int
1160
+ }
1314
1161
 
1162
+ """
1163
+ A Relay edge containing a `Document` and its cursor.
1164
+ """
1165
+ type DocumentEdge {
1315
1166
  """
1316
- Modified by user (descending)
1167
+ The item at the end of the edge
1317
1168
  """
1318
- MODIFIED_BY_USER_DESC
1169
+ node: Document
1319
1170
 
1320
1171
  """
1321
- Modified by group
1172
+ A cursor for use in pagination
1322
1173
  """
1323
- MODIFIED_BY_GROUP_ASC
1174
+ cursor: String!
1175
+ }
1324
1176
 
1325
- """
1326
- Modified by group (descending)
1327
- """
1328
- MODIFIED_BY_GROUP_DESC
1177
+ input DocumentFilterSetType {
1178
+ form: ID
1179
+ forms: [ID]
1180
+ search: String
1181
+ id: ID
1182
+ createdByUser: String
1183
+ createdByGroup: String
1184
+ modifiedByUser: String
1185
+ modifiedByGroup: String
1186
+ createdBefore: DateTime
1187
+ createdAfter: DateTime
1188
+ metaHasKey: String
1189
+ metaValue: [JSONValueFilterType]
1190
+ rootDocument: ID
1191
+ hasAnswer: [HasAnswerFilterType]
1192
+ searchAnswers: [SearchAnswersFilterType]
1193
+ invert: Boolean
1329
1194
  }
1330
1195
 
1331
1196
  input DocumentOrderSetType {
@@ -1380,44 +1245,23 @@ type DynamicChoiceQuestion implements Question & DynamicQuestion & Node {
1380
1245
  isHidden: QuestionJexl!
1381
1246
  isArchived: Boolean!
1382
1247
  infoText: String
1248
+ hintText: String
1383
1249
  meta: GenericScalar!
1384
1250
  source: Question
1385
1251
  forms(
1252
+ offset: Int
1386
1253
  before: String
1387
1254
  after: String
1388
1255
  first: Int
1389
1256
  last: Int
1390
- metaValue: [JSONValueFilterType]
1391
-
1392
- """
1393
- FormOrdering
1394
- """
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
1406
-
1407
- """
1408
- Only return entries created after the given DateTime (Exclusive)
1409
- """
1410
- createdBefore: DateTime
1411
-
1412
- """
1413
- Only return entries created at or before the given DateTime (Inclusive)
1414
- """
1415
- createdAfter: DateTime
1416
- metaHasKey: String
1417
- search: String
1418
- slugs: [String]
1257
+ filter: [FormFilterSetType]
1258
+ order: [FormOrderSetType]
1419
1259
  ): FormConnection
1420
1260
  options(
1261
+ """
1262
+ JSON object passed as context to the data source
1263
+ """
1264
+ context: JSONString
1421
1265
  before: String
1422
1266
  after: String
1423
1267
  first: Int
@@ -1426,7 +1270,7 @@ type DynamicChoiceQuestion implements Question & DynamicQuestion & Node {
1426
1270
  dataSource: String!
1427
1271
 
1428
1272
  """
1429
- The ID of the object.
1273
+ The ID of the object
1430
1274
  """
1431
1275
  id: ID!
1432
1276
  }
@@ -1448,44 +1292,23 @@ type DynamicMultipleChoiceQuestion implements Question & DynamicQuestion & Node
1448
1292
  isHidden: QuestionJexl!
1449
1293
  isArchived: Boolean!
1450
1294
  infoText: String
1295
+ hintText: String
1451
1296
  meta: GenericScalar!
1452
1297
  source: Question
1453
1298
  forms(
1299
+ offset: Int
1454
1300
  before: String
1455
1301
  after: String
1456
1302
  first: Int
1457
1303
  last: Int
1458
- metaValue: [JSONValueFilterType]
1459
-
1460
- """
1461
- FormOrdering
1462
- """
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
1474
-
1475
- """
1476
- Only return entries created after the given DateTime (Exclusive)
1477
- """
1478
- createdBefore: DateTime
1479
-
1480
- """
1481
- Only return entries created at or before the given DateTime (Inclusive)
1482
- """
1483
- createdAfter: DateTime
1484
- metaHasKey: String
1485
- search: String
1486
- slugs: [String]
1304
+ filter: [FormFilterSetType]
1305
+ order: [FormOrderSetType]
1487
1306
  ): FormConnection
1488
1307
  options(
1308
+ """
1309
+ JSON object passed as context to the data source
1310
+ """
1311
+ context: JSONString
1489
1312
  before: String
1490
1313
  after: String
1491
1314
  first: Int
@@ -1494,7 +1317,7 @@ type DynamicMultipleChoiceQuestion implements Question & DynamicQuestion & Node
1494
1317
  dataSource: String!
1495
1318
 
1496
1319
  """
1497
- The ID of the object.
1320
+ The ID of the object
1498
1321
  """
1499
1322
  id: ID!
1500
1323
  }
@@ -1508,7 +1331,7 @@ type DynamicOption implements Node {
1508
1331
  modifiedByGroup: String
1509
1332
 
1510
1333
  """
1511
- The ID of the object.
1334
+ The ID of the object
1512
1335
  """
1513
1336
  id: ID!
1514
1337
  slug: String!
@@ -1551,14 +1374,25 @@ input DynamicOptionFilterSetType {
1551
1374
  invert: Boolean
1552
1375
  }
1553
1376
 
1377
+ input DynamicOptionOrderSetType {
1378
+ meta: String
1379
+ attribute: SortableDynamicOptionAttributes
1380
+ direction: AscDesc
1381
+ }
1382
+
1554
1383
  interface DynamicQuestion {
1555
1384
  options(
1385
+ """
1386
+ JSON object passed as context to the data source
1387
+ """
1388
+ context: JSONString
1556
1389
  before: String
1557
1390
  after: String
1558
1391
  first: Int
1559
1392
  last: Int
1560
1393
  ): DataSourceDataConnection
1561
1394
  dataSource: String!
1395
+ hintText: String
1562
1396
  }
1563
1397
 
1564
1398
  type File implements Node {
@@ -1570,17 +1404,17 @@ type File implements Node {
1570
1404
  modifiedByGroup: String
1571
1405
 
1572
1406
  """
1573
- The ID of the object.
1407
+ The ID of the object
1574
1408
  """
1575
1409
  id: ID!
1576
1410
  name: String!
1577
- answer: FileAnswer
1411
+ answer: FilesAnswer
1578
1412
  uploadUrl: String
1579
1413
  downloadUrl: String
1580
1414
  metadata: GenericScalar
1581
1415
  }
1582
1416
 
1583
- type FileAnswer implements Answer & Node {
1417
+ type FilesAnswer implements Answer & Node {
1584
1418
  createdAt: DateTime!
1585
1419
  modifiedAt: DateTime!
1586
1420
  createdByUser: String
@@ -1589,16 +1423,15 @@ type FileAnswer implements Answer & Node {
1589
1423
  modifiedByGroup: String
1590
1424
 
1591
1425
  """
1592
- The ID of the object.
1426
+ The ID of the object
1593
1427
  """
1594
1428
  id: ID!
1595
1429
  question: Question!
1596
- value: File!
1430
+ value: [File]!
1597
1431
  meta: GenericScalar!
1598
- file: File
1599
1432
  }
1600
1433
 
1601
- type FileQuestion implements Question & Node {
1434
+ type FilesQuestion implements Question & Node {
1602
1435
  createdAt: DateTime!
1603
1436
  modifiedAt: DateTime!
1604
1437
  createdByUser: String
@@ -1615,46 +1448,21 @@ type FileQuestion implements Question & Node {
1615
1448
  isHidden: QuestionJexl!
1616
1449
  isArchived: Boolean!
1617
1450
  infoText: String
1451
+ hintText: String
1618
1452
  meta: GenericScalar!
1619
1453
  source: Question
1620
1454
  forms(
1455
+ offset: Int
1621
1456
  before: String
1622
1457
  after: String
1623
1458
  first: Int
1624
1459
  last: Int
1625
- metaValue: [JSONValueFilterType]
1626
-
1627
- """
1628
- FormOrdering
1629
- """
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
1641
-
1642
- """
1643
- Only return entries created after the given DateTime (Exclusive)
1644
- """
1645
- createdBefore: DateTime
1646
-
1647
- """
1648
- Only return entries created at or before the given DateTime (Inclusive)
1649
- """
1650
- createdAfter: DateTime
1651
- metaHasKey: String
1652
- search: String
1653
- slugs: [String]
1460
+ filter: [FormFilterSetType]
1461
+ order: [FormOrderSetType]
1654
1462
  ): FormConnection
1655
1463
 
1656
1464
  """
1657
- The ID of the object.
1465
+ The ID of the object
1658
1466
  """
1659
1467
  id: ID!
1660
1468
  }
@@ -1668,7 +1476,7 @@ type FloatAnswer implements Answer & Node {
1668
1476
  modifiedByGroup: String
1669
1477
 
1670
1478
  """
1671
- The ID of the object.
1479
+ The ID of the object
1672
1480
  """
1673
1481
  id: ID!
1674
1482
  question: Question!
@@ -1694,47 +1502,22 @@ type FloatQuestion implements Question & Node {
1694
1502
  isArchived: Boolean!
1695
1503
  placeholder: String
1696
1504
  infoText: String
1505
+ hintText: String
1697
1506
  meta: GenericScalar!
1698
1507
  source: Question
1699
1508
  defaultAnswer: FloatAnswer
1700
1509
  forms(
1510
+ offset: Int
1701
1511
  before: String
1702
1512
  after: String
1703
1513
  first: Int
1704
1514
  last: Int
1705
- metaValue: [JSONValueFilterType]
1706
-
1707
- """
1708
- FormOrdering
1709
- """
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
1721
-
1722
- """
1723
- Only return entries created after the given DateTime (Exclusive)
1724
- """
1725
- createdBefore: DateTime
1726
-
1727
- """
1728
- Only return entries created at or before the given DateTime (Inclusive)
1729
- """
1730
- createdAfter: DateTime
1731
- metaHasKey: String
1732
- search: String
1733
- slugs: [String]
1515
+ filter: [FormFilterSetType]
1516
+ order: [FormOrderSetType]
1734
1517
  ): FormConnection
1735
1518
 
1736
1519
  """
1737
- The ID of the object.
1520
+ The ID of the object
1738
1521
  """
1739
1522
  id: ID!
1740
1523
  minValue: Float
@@ -1750,7 +1533,7 @@ type Flow implements Node {
1750
1533
  modifiedByGroup: String
1751
1534
 
1752
1535
  """
1753
- The ID of the object.
1536
+ The ID of the object
1754
1537
  """
1755
1538
  id: ID!
1756
1539
  next: FlowJexl!
@@ -1809,6 +1592,12 @@ Examples:
1809
1592
  """
1810
1593
  scalar FlowJexl
1811
1594
 
1595
+ input FlowOrderSetType {
1596
+ meta: String
1597
+ attribute: SortableFlowAttributes
1598
+ direction: AscDesc
1599
+ }
1600
+
1812
1601
  type Form implements Node {
1813
1602
  createdAt: DateTime!
1814
1603
  modifiedAt: DateTime!
@@ -1823,41 +1612,13 @@ type Form implements Node {
1823
1612
  isPublished: Boolean!
1824
1613
  isArchived: Boolean!
1825
1614
  questions(
1615
+ offset: Int
1826
1616
  before: String
1827
1617
  after: String
1828
1618
  first: Int
1829
1619
  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
1842
-
1843
- """
1844
- Only return entries created after the given DateTime (Exclusive)
1845
- """
1846
- createdBefore: DateTime
1847
-
1848
- """
1849
- Only return entries created at or before the given DateTime (Inclusive)
1850
- """
1851
- createdAfter: DateTime
1852
- metaHasKey: String
1853
- excludeForms: [ID]
1854
- search: String
1855
-
1856
- """
1857
- QuestionOrdering
1858
- """
1859
- orderBy: [QuestionOrdering]
1860
- slugs: [String]
1620
+ filter: [QuestionFilterSetType]
1621
+ order: [QuestionOrderSetType]
1861
1622
  ): QuestionConnection
1862
1623
 
1863
1624
  """
@@ -1865,6 +1626,7 @@ type Form implements Node {
1865
1626
  """
1866
1627
  source: Form
1867
1628
  documents(
1629
+ offset: Int
1868
1630
  before: String
1869
1631
  after: String
1870
1632
  first: Int
@@ -1872,7 +1634,7 @@ type Form implements Node {
1872
1634
  ): DocumentConnection!
1873
1635
 
1874
1636
  """
1875
- The ID of the object.
1637
+ The ID of the object
1876
1638
  """
1877
1639
  id: ID!
1878
1640
  }
@@ -1941,8 +1703,6 @@ type FormEdge {
1941
1703
  }
1942
1704
 
1943
1705
  input FormFilterSetType {
1944
- orderBy: [FormOrdering]
1945
- slug: String
1946
1706
  name: String
1947
1707
  description: String
1948
1708
  isPublished: Boolean
@@ -1961,81 +1721,6 @@ input FormFilterSetType {
1961
1721
  invert: Boolean
1962
1722
  }
1963
1723
 
1964
- """
1965
- An enumeration.
1966
- """
1967
- enum FormOrdering {
1968
- """
1969
- Name
1970
- """
1971
- NAME_ASC
1972
-
1973
- """
1974
- Name (descending)
1975
- """
1976
- NAME_DESC
1977
-
1978
- """
1979
- Created at
1980
- """
1981
- CREATED_AT_ASC
1982
-
1983
- """
1984
- Created at (descending)
1985
- """
1986
- CREATED_AT_DESC
1987
-
1988
- """
1989
- Modified at
1990
- """
1991
- MODIFIED_AT_ASC
1992
-
1993
- """
1994
- Modified at (descending)
1995
- """
1996
- MODIFIED_AT_DESC
1997
-
1998
- """
1999
- Created by user
2000
- """
2001
- CREATED_BY_USER_ASC
2002
-
2003
- """
2004
- Created by user (descending)
2005
- """
2006
- CREATED_BY_USER_DESC
2007
-
2008
- """
2009
- Created by group
2010
- """
2011
- CREATED_BY_GROUP_ASC
2012
-
2013
- """
2014
- Created by group (descending)
2015
- """
2016
- CREATED_BY_GROUP_DESC
2017
-
2018
- """
2019
- Modified by user
2020
- """
2021
- MODIFIED_BY_USER_ASC
2022
-
2023
- """
2024
- Modified by user (descending)
2025
- """
2026
- MODIFIED_BY_USER_DESC
2027
-
2028
- """
2029
- Modified by group
2030
- """
2031
- MODIFIED_BY_GROUP_ASC
2032
-
2033
- """
2034
- Modified by group (descending)
2035
- """
2036
- MODIFIED_BY_GROUP_DESC
2037
- }
2038
-
2039
1724
  input FormOrderSetType {
2040
1725
  meta: String
2041
1726
  attribute: SortableFormAttributes
@@ -2062,39 +1747,13 @@ type FormQuestion implements Question & Node {
2062
1747
  meta: GenericScalar!
2063
1748
  source: Question
2064
1749
  forms(
1750
+ offset: Int
2065
1751
  before: String
2066
1752
  after: String
2067
1753
  first: Int
2068
1754
  last: Int
2069
- metaValue: [JSONValueFilterType]
2070
-
2071
- """
2072
- FormOrdering
2073
- """
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
2085
-
2086
- """
2087
- Only return entries created after the given DateTime (Exclusive)
2088
- """
2089
- createdBefore: DateTime
2090
-
2091
- """
2092
- Only return entries created at or before the given DateTime (Inclusive)
2093
- """
2094
- createdAfter: DateTime
2095
- metaHasKey: String
2096
- search: String
2097
- slugs: [String]
1755
+ filter: [FormFilterSetType]
1756
+ order: [FormOrderSetType]
2098
1757
  ): FormConnection
2099
1758
 
2100
1759
  """
@@ -2103,7 +1762,7 @@ type FormQuestion implements Question & Node {
2103
1762
  subForm: Form
2104
1763
 
2105
1764
  """
2106
- The ID of the object.
1765
+ The ID of the object
2107
1766
  """
2108
1767
  id: ID!
2109
1768
  }
@@ -2147,7 +1806,7 @@ type IntegerAnswer implements Answer & Node {
2147
1806
  modifiedByGroup: String
2148
1807
 
2149
1808
  """
2150
- The ID of the object.
1809
+ The ID of the object
2151
1810
  """
2152
1811
  id: ID!
2153
1812
  question: Question!
@@ -2173,47 +1832,22 @@ type IntegerQuestion implements Question & Node {
2173
1832
  isArchived: Boolean!
2174
1833
  placeholder: String
2175
1834
  infoText: String
1835
+ hintText: String
2176
1836
  meta: GenericScalar!
2177
1837
  source: Question
2178
1838
  defaultAnswer: IntegerAnswer
2179
1839
  forms(
1840
+ offset: Int
2180
1841
  before: String
2181
1842
  after: String
2182
1843
  first: Int
2183
1844
  last: Int
2184
- metaValue: [JSONValueFilterType]
2185
-
2186
- """
2187
- FormOrdering
2188
- """
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
2200
-
2201
- """
2202
- Only return entries created after the given DateTime (Exclusive)
2203
- """
2204
- createdBefore: DateTime
2205
-
2206
- """
2207
- Only return entries created at or before the given DateTime (Inclusive)
2208
- """
2209
- createdAfter: DateTime
2210
- metaHasKey: String
2211
- search: String
2212
- slugs: [String]
1845
+ filter: [FormFilterSetType]
1846
+ order: [FormOrderSetType]
2213
1847
  ): FormConnection
2214
1848
 
2215
1849
  """
2216
- The ID of the object.
1850
+ The ID of the object
2217
1851
  """
2218
1852
  id: ID!
2219
1853
  maxValue: Int
@@ -2255,7 +1889,7 @@ type ListAnswer implements Answer & Node {
2255
1889
  modifiedByGroup: String
2256
1890
 
2257
1891
  """
2258
- The ID of the object.
1892
+ The ID of the object
2259
1893
  """
2260
1894
  id: ID!
2261
1895
  question: Question!
@@ -2286,84 +1920,48 @@ type MultipleChoiceQuestion implements Question & Node {
2286
1920
  isHidden: QuestionJexl!
2287
1921
  isArchived: Boolean!
2288
1922
  infoText: String
1923
+ hintText: String
2289
1924
  meta: GenericScalar!
2290
1925
  source: Question
2291
1926
  defaultAnswer: ListAnswer
2292
1927
  forms(
1928
+ offset: Int
2293
1929
  before: String
2294
1930
  after: String
2295
1931
  first: Int
2296
1932
  last: Int
2297
- metaValue: [JSONValueFilterType]
2298
-
2299
- """
2300
- FormOrdering
2301
- """
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
2313
-
2314
- """
2315
- Only return entries created after the given DateTime (Exclusive)
2316
- """
2317
- createdBefore: DateTime
2318
-
2319
- """
2320
- Only return entries created at or before the given DateTime (Inclusive)
2321
- """
2322
- createdAfter: DateTime
2323
- metaHasKey: String
2324
- search: String
2325
- slugs: [String]
1933
+ filter: [FormFilterSetType]
1934
+ order: [FormOrderSetType]
2326
1935
  ): FormConnection
2327
1936
  options(
1937
+ offset: Int
2328
1938
  before: String
2329
1939
  after: String
2330
1940
  first: Int
2331
1941
  last: Int
2332
- metaValue: [JSONValueFilterType]
2333
-
2334
- """
2335
- OptionOrdering
2336
- """
2337
- orderBy: [OptionOrdering]
2338
- slug: String
2339
- label: String
2340
- isArchived: Boolean
2341
- createdByUser: String
2342
- createdByGroup: String
2343
- modifiedByUser: String
2344
- modifiedByGroup: String
2345
-
2346
- """
2347
- Only return entries created after the given DateTime (Exclusive)
2348
- """
2349
- createdBefore: DateTime
2350
-
2351
- """
2352
- Only return entries created at or before the given DateTime (Inclusive)
2353
- """
2354
- createdAfter: DateTime
2355
- metaHasKey: String
2356
- search: String
1942
+ filter: [OptionFilterSetType]
1943
+ order: [OptionOrderSetType]
2357
1944
  ): OptionConnection
2358
1945
  staticContent: String
2359
1946
 
2360
1947
  """
2361
- The ID of the object.
1948
+ The ID of the object
2362
1949
  """
2363
1950
  id: ID!
2364
1951
  }
2365
1952
 
2366
1953
  type Mutation {
1954
+ saveAnalyticsTable(input: SaveAnalyticsTableInput!): SaveAnalyticsTablePayload
1955
+ removeAnalyticsTable(
1956
+ input: RemoveAnalyticsTableInput!
1957
+ ): RemoveAnalyticsTablePayload
1958
+ saveAnalyticsField(input: SaveAnalyticsFieldInput!): SaveAnalyticsFieldPayload
1959
+ removeAnalyticsField(
1960
+ input: RemoveAnalyticsFieldInput!
1961
+ ): RemoveAnalyticsFieldPayload
1962
+ reorderAnalyticsFields(
1963
+ input: ReorderAnalyticsFieldsInput!
1964
+ ): ReorderAnalyticsFieldsPayload
2367
1965
  saveWorkflow(input: SaveWorkflowInput!): SaveWorkflowPayload
2368
1966
  addWorkflowFlow(input: AddWorkflowFlowInput!): AddWorkflowFlowPayload
2369
1967
  removeFlow(input: RemoveFlowInput!): RemoveFlowPayload
@@ -2374,17 +1972,17 @@ type Mutation {
2374
1972
  saveCompleteTaskFormTask(
2375
1973
  input: SaveCompleteTaskFormTaskInput!
2376
1974
  ): SaveCompleteTaskFormTaskPayload
2377
- startCase(input: StartCaseInput!): StartCasePayload
2378
- @deprecated(reason: "Use SaveCase mutation instead")
2379
1975
  saveCase(input: SaveCaseInput!): SaveCasePayload
2380
1976
  cancelCase(input: CancelCaseInput!): CancelCasePayload
2381
1977
  suspendCase(input: SuspendCaseInput!): SuspendCasePayload
2382
1978
  resumeCase(input: ResumeCaseInput!): ResumeCasePayload
1979
+ reopenCase(input: ReopenCaseInput!): ReopenCasePayload
2383
1980
  completeWorkItem(input: CompleteWorkItemInput!): CompleteWorkItemPayload
2384
1981
  skipWorkItem(input: SkipWorkItemInput!): SkipWorkItemPayload
2385
1982
  cancelWorkItem(input: CancelWorkItemInput!): CancelWorkItemPayload
2386
1983
  suspendWorkItem(input: SuspendWorkItemInput!): SuspendWorkItemPayload
2387
1984
  resumeWorkItem(input: ResumeWorkItemInput!): ResumeWorkItemPayload
1985
+ redoWorkItem(input: RedoWorkItemInput!): RedoWorkItemPayload
2388
1986
  saveWorkItem(input: SaveWorkItemInput!): SaveWorkItemPayload
2389
1987
  createWorkItem(input: CreateWorkItemInput!): CreateWorkItemPayload
2390
1988
  saveForm(input: SaveFormInput!): SaveFormPayload
@@ -2422,7 +2020,7 @@ type Mutation {
2422
2020
  ): SaveIntegerQuestionPayload
2423
2021
  saveTableQuestion(input: SaveTableQuestionInput!): SaveTableQuestionPayload
2424
2022
  saveFormQuestion(input: SaveFormQuestionInput!): SaveFormQuestionPayload
2425
- saveFileQuestion(input: SaveFileQuestionInput!): SaveFileQuestionPayload
2023
+ saveFilesQuestion(input: SaveFilesQuestionInput!): SaveFilesQuestionPayload
2426
2024
  saveStaticQuestion(input: SaveStaticQuestionInput!): SaveStaticQuestionPayload
2427
2025
  saveCalculatedFloatQuestion(
2428
2026
  input: SaveCalculatedFloatQuestionInput!
@@ -2450,9 +2048,9 @@ type Mutation {
2450
2048
  saveDocumentTableAnswer(
2451
2049
  input: SaveDocumentTableAnswerInput!
2452
2050
  ): SaveDocumentTableAnswerPayload
2453
- saveDocumentFileAnswer(
2454
- input: SaveDocumentFileAnswerInput!
2455
- ): SaveDocumentFileAnswerPayload
2051
+ saveDocumentFilesAnswer(
2052
+ input: SaveDocumentFilesAnswerInput!
2053
+ ): SaveDocumentFilesAnswerPayload
2456
2054
  saveDefaultStringAnswer(
2457
2055
  input: SaveDefaultStringAnswerInput!
2458
2056
  ): SaveDefaultStringAnswerPayload
@@ -2483,7 +2081,7 @@ An object with an ID
2483
2081
  """
2484
2082
  interface Node {
2485
2083
  """
2486
- The ID of the object.
2084
+ The ID of the object
2487
2085
  """
2488
2086
  id: ID!
2489
2087
  }
@@ -2495,123 +2093,70 @@ type Option implements Node {
2495
2093
  createdByGroup: String
2496
2094
  modifiedByUser: String
2497
2095
  modifiedByGroup: String
2498
- slug: String!
2499
- label: String!
2500
- isArchived: Boolean!
2501
- meta: GenericScalar
2502
-
2503
- """
2504
- Reference this option has been copied from
2505
- """
2506
- source: Option
2507
-
2508
- """
2509
- The ID of the object.
2510
- """
2511
- id: ID!
2512
- }
2513
-
2514
- type OptionConnection {
2515
- """
2516
- Pagination data for this connection.
2517
- """
2518
- pageInfo: PageInfo!
2519
-
2520
- """
2521
- Contains the nodes in this connection.
2522
- """
2523
- edges: [OptionEdge]!
2524
- totalCount: Int
2525
- }
2526
-
2527
- """
2528
- A Relay edge containing a `Option` and its cursor.
2529
- """
2530
- type OptionEdge {
2531
- """
2532
- The item at the end of the edge
2533
- """
2534
- node: Option
2535
-
2536
- """
2537
- A cursor for use in pagination
2538
- """
2539
- cursor: String!
2540
- }
2541
-
2542
- """
2543
- An enumeration.
2544
- """
2545
- enum OptionOrdering {
2546
- """
2547
- Label
2548
- """
2549
- LABEL_ASC
2550
-
2551
- """
2552
- Label (descending)
2553
- """
2554
- LABEL_DESC
2555
-
2556
- """
2557
- Created at
2558
- """
2559
- CREATED_AT_ASC
2560
-
2561
- """
2562
- Created at (descending)
2563
- """
2564
- CREATED_AT_DESC
2565
-
2566
- """
2567
- Modified at
2568
- """
2569
- MODIFIED_AT_ASC
2570
-
2571
- """
2572
- Modified at (descending)
2573
- """
2574
- MODIFIED_AT_DESC
2096
+ slug: String!
2097
+ label: String!
2098
+ isArchived: Boolean!
2099
+ meta: GenericScalar
2575
2100
 
2576
2101
  """
2577
- Created by user
2102
+ Reference this option has been copied from
2578
2103
  """
2579
- CREATED_BY_USER_ASC
2104
+ source: Option
2580
2105
 
2581
2106
  """
2582
- Created by user (descending)
2107
+ The ID of the object
2583
2108
  """
2584
- CREATED_BY_USER_DESC
2109
+ id: ID!
2110
+ }
2585
2111
 
2112
+ type OptionConnection {
2586
2113
  """
2587
- Created by group
2114
+ Pagination data for this connection.
2588
2115
  """
2589
- CREATED_BY_GROUP_ASC
2116
+ pageInfo: PageInfo!
2590
2117
 
2591
2118
  """
2592
- Created by group (descending)
2119
+ Contains the nodes in this connection.
2593
2120
  """
2594
- CREATED_BY_GROUP_DESC
2121
+ edges: [OptionEdge]!
2122
+ totalCount: Int
2123
+ }
2595
2124
 
2125
+ """
2126
+ A Relay edge containing a `Option` and its cursor.
2127
+ """
2128
+ type OptionEdge {
2596
2129
  """
2597
- Modified by user
2130
+ The item at the end of the edge
2598
2131
  """
2599
- MODIFIED_BY_USER_ASC
2132
+ node: Option
2600
2133
 
2601
2134
  """
2602
- Modified by user (descending)
2135
+ A cursor for use in pagination
2603
2136
  """
2604
- MODIFIED_BY_USER_DESC
2137
+ cursor: String!
2138
+ }
2605
2139
 
2606
- """
2607
- Modified by group
2608
- """
2609
- MODIFIED_BY_GROUP_ASC
2140
+ input OptionFilterSetType {
2141
+ slug: String
2142
+ label: String
2143
+ isArchived: Boolean
2144
+ createdByUser: String
2145
+ createdByGroup: String
2146
+ modifiedByUser: String
2147
+ modifiedByGroup: String
2148
+ createdBefore: DateTime
2149
+ createdAfter: DateTime
2150
+ metaHasKey: String
2151
+ metaValue: [JSONValueFilterType]
2152
+ search: String
2153
+ invert: Boolean
2154
+ }
2610
2155
 
2611
- """
2612
- Modified by group (descending)
2613
- """
2614
- MODIFIED_BY_GROUP_DESC
2156
+ input OptionOrderSetType {
2157
+ meta: String
2158
+ attribute: SortableOptionAttributes
2159
+ direction: AscDesc
2615
2160
  }
2616
2161
 
2617
2162
  """
@@ -2640,6 +2185,25 @@ type PageInfo {
2640
2185
  }
2641
2186
 
2642
2187
  type Query {
2188
+ allAnalyticsTables(
2189
+ offset: Int
2190
+ before: String
2191
+ after: String
2192
+ first: Int
2193
+ last: Int
2194
+ filter: [AnalyticsTableFilterSetType]
2195
+ order: [AnalyticsTableOrderSetType]
2196
+ ): AnalyticsTableConnection
2197
+ analyticsTable(slug: String!): AnalyticsTable
2198
+ allAnalyticsFields(
2199
+ offset: Int
2200
+ before: String
2201
+ after: String
2202
+ first: Int
2203
+ last: Int
2204
+ filter: [AnalyticsFieldFilterSetType]
2205
+ order: [AnalyticsFieldOrderSetType]
2206
+ ): AnalyticsFieldConnection
2643
2207
  allDataSources(
2644
2208
  before: String
2645
2209
  after: String
@@ -2648,287 +2212,83 @@ type Query {
2648
2212
  ): DataSourceConnection
2649
2213
  dataSource(
2650
2214
  name: String!
2215
+
2216
+ """
2217
+ Slug of the question passed as context to the data source
2218
+ """
2219
+ question: String
2220
+
2221
+ """
2222
+ JSON object passed as context to the data source
2223
+ """
2224
+ context: JSONString
2651
2225
  before: String
2652
2226
  after: String
2653
2227
  first: Int
2654
2228
  last: Int
2655
2229
  ): DataSourceDataConnection
2656
2230
  allWorkflows(
2231
+ offset: Int
2657
2232
  before: String
2658
2233
  after: String
2659
2234
  first: Int
2660
2235
  last: Int
2661
- metaValue: [JSONValueFilterType]
2662
- slug: String
2663
- name: String
2664
- description: String
2665
- isPublished: Boolean
2666
- isArchived: Boolean
2667
-
2668
- """
2669
- WorkflowOrdering
2670
- """
2671
- orderBy: [WorkflowOrdering]
2672
2236
  filter: [WorkflowFilterSetType]
2673
2237
  order: [WorkflowOrderSetType]
2674
- createdByUser: String
2675
- createdByGroup: String
2676
- modifiedByUser: String
2677
- modifiedByGroup: String
2678
-
2679
- """
2680
- Only return entries created after the given DateTime (Exclusive)
2681
- """
2682
- createdBefore: DateTime
2683
-
2684
- """
2685
- Only return entries created at or before the given DateTime (Inclusive)
2686
- """
2687
- createdAfter: DateTime
2688
- metaHasKey: String
2689
- search: String
2690
2238
  ): WorkflowConnection
2691
2239
  allTasks(
2240
+ offset: Int
2692
2241
  before: String
2693
2242
  after: String
2694
2243
  first: Int
2695
2244
  last: Int
2696
- metaValue: [JSONValueFilterType]
2697
- slug: String
2698
- name: String
2699
- description: String
2700
- type: TaskTypeArgument
2701
- isArchived: Boolean
2702
-
2703
- """
2704
- TaskOrdering
2705
- """
2706
- orderBy: [TaskOrdering]
2707
2245
  filter: [TaskFilterSetType]
2708
2246
  order: [TaskOrderSetType]
2709
- createdByUser: String
2710
- createdByGroup: String
2711
- modifiedByUser: String
2712
- modifiedByGroup: String
2713
-
2714
- """
2715
- Only return entries created after the given DateTime (Exclusive)
2716
- """
2717
- createdBefore: DateTime
2718
-
2719
- """
2720
- Only return entries created at or before the given DateTime (Inclusive)
2721
- """
2722
- createdAfter: DateTime
2723
- metaHasKey: String
2724
- search: String
2725
2247
  ): TaskConnection
2726
2248
  allCases(
2249
+ offset: Int
2727
2250
  before: String
2728
2251
  after: String
2729
2252
  first: Int
2730
2253
  last: Int
2731
- metaValue: [JSONValueFilterType]
2732
- workflow: ID
2733
-
2734
- """
2735
- CaseOrdering
2736
- """
2737
- orderBy: [CaseOrdering]
2738
2254
  filter: [CaseFilterSetType]
2739
2255
  order: [CaseOrderSetType]
2740
- createdByUser: String
2741
- createdByGroup: String
2742
- modifiedByUser: String
2743
- modifiedByGroup: String
2744
-
2745
- """
2746
- Only return entries created after the given DateTime (Exclusive)
2747
- """
2748
- createdBefore: DateTime
2749
-
2750
- """
2751
- Only return entries created at or before the given DateTime (Inclusive)
2752
- """
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]
2763
-
2764
- """
2765
- Expects a question slug. If the slug is prefixed with a hyphen, the order will be reversed
2766
-
2767
- For file questions, the filename is used for sorting.
2768
-
2769
- Table questions are not supported at this time.
2770
- """
2771
- orderByQuestionAnswerValue: String
2772
2256
  ): CaseConnection
2773
2257
  allWorkItems(
2258
+ offset: Int
2774
2259
  before: String
2775
2260
  after: String
2776
2261
  first: Int
2777
2262
  last: Int
2778
- metaValue: [JSONValueFilterType]
2779
- status: WorkItemStatusArgument
2780
-
2781
- """
2782
- WorkItemOrdering
2783
- """
2784
- orderBy: [WorkItemOrdering]
2785
2263
  filter: [WorkItemFilterSetType]
2786
2264
  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
2805
-
2806
- """
2807
- Only return entries created after the given DateTime (Exclusive)
2808
- """
2809
- createdBefore: DateTime
2810
-
2811
- """
2812
- Only return entries created at or before the given DateTime (Inclusive)
2813
- """
2814
- createdAfter: DateTime
2815
- metaHasKey: String
2816
- id: ID
2817
- addressedGroups: [String]
2818
- controllingGroups: [String]
2819
- assignedUsers: [String]
2820
2265
  ): WorkItemConnection
2821
2266
  allForms(
2267
+ offset: Int
2822
2268
  before: String
2823
2269
  after: String
2824
2270
  first: Int
2825
2271
  last: Int
2826
- metaValue: [JSONValueFilterType]
2827
-
2828
- """
2829
- FormOrdering
2830
- """
2831
- orderBy: [FormOrdering]
2832
- slug: String
2833
- name: String
2834
- description: String
2835
- isPublished: Boolean
2836
- isArchived: Boolean
2837
- questions: [String]
2838
2272
  filter: [FormFilterSetType]
2839
2273
  order: [FormOrderSetType]
2840
- createdByUser: String
2841
- createdByGroup: String
2842
- modifiedByUser: String
2843
- modifiedByGroup: String
2844
-
2845
- """
2846
- Only return entries created after the given DateTime (Exclusive)
2847
- """
2848
- createdBefore: DateTime
2849
-
2850
- """
2851
- Only return entries created at or before the given DateTime (Inclusive)
2852
- """
2853
- createdAfter: DateTime
2854
- metaHasKey: String
2855
- search: String
2856
- slugs: [String]
2857
2274
  ): FormConnection
2858
2275
  allQuestions(
2276
+ offset: Int
2859
2277
  before: String
2860
2278
  after: String
2861
2279
  first: Int
2862
2280
  last: Int
2863
- metaValue: [JSONValueFilterType]
2864
-
2865
- """
2866
- QuestionOrdering
2867
- """
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
2281
  filter: [QuestionFilterSetType]
2877
2282
  order: [QuestionOrderSetType]
2878
- createdByUser: String
2879
- createdByGroup: String
2880
- modifiedByUser: String
2881
- modifiedByGroup: String
2882
-
2883
- """
2884
- Only return entries created after the given DateTime (Exclusive)
2885
- """
2886
- createdBefore: DateTime
2887
-
2888
- """
2889
- Only return entries created at or before the given DateTime (Inclusive)
2890
- """
2891
- createdAfter: DateTime
2892
- metaHasKey: String
2893
- excludeForms: [ID]
2894
- search: String
2895
- slugs: [String]
2896
2283
  ): QuestionConnection
2897
2284
  allDocuments(
2285
+ offset: Int
2898
2286
  before: String
2899
2287
  after: String
2900
2288
  first: Int
2901
2289
  last: Int
2902
- metaValue: [JSONValueFilterType]
2903
- form: ID
2904
- forms: [ID]
2905
- search: String
2906
- id: ID
2907
-
2908
- """
2909
- DocumentOrdering
2910
- """
2911
- orderBy: [DocumentOrdering]
2912
2290
  filter: [DocumentFilterSetType]
2913
2291
  order: [DocumentOrderSetType]
2914
- createdByUser: String
2915
- createdByGroup: String
2916
- modifiedByUser: String
2917
- modifiedByGroup: String
2918
-
2919
- """
2920
- Only return entries created after the given DateTime (Exclusive)
2921
- """
2922
- createdBefore: DateTime
2923
-
2924
- """
2925
- Only return entries created at or before the given DateTime (Inclusive)
2926
- """
2927
- createdAfter: DateTime
2928
- metaHasKey: String
2929
- rootDocument: ID
2930
- hasAnswer: [HasAnswerFilterType]
2931
- searchAnswers: [SearchAnswersFilterType]
2932
2292
  ): DocumentConnection
2933
2293
  allFormatValidators(
2934
2294
  before: String
@@ -2937,27 +2297,13 @@ type Query {
2937
2297
  last: Int
2938
2298
  ): FormatValidatorConnection
2939
2299
  allUsedDynamicOptions(
2300
+ offset: Int
2940
2301
  before: String
2941
2302
  after: String
2942
2303
  first: Int
2943
2304
  last: Int
2944
- question: ID
2945
- document: ID
2946
2305
  filter: [DynamicOptionFilterSetType]
2947
- createdByUser: String
2948
- createdByGroup: String
2949
- modifiedByUser: String
2950
- modifiedByGroup: String
2951
-
2952
- """
2953
- Only return entries created after the given DateTime (Exclusive)
2954
- """
2955
- createdBefore: DateTime
2956
-
2957
- """
2958
- Only return entries created at or before the given DateTime (Inclusive)
2959
- """
2960
- createdAfter: DateTime
2306
+ order: [DynamicOptionOrderSetType]
2961
2307
  ): DynamicOptionConnection
2962
2308
  documentValidity(
2963
2309
  id: ID!
@@ -2995,39 +2341,13 @@ interface Question {
2995
2341
  isArchived: Boolean!
2996
2342
  meta: GenericScalar!
2997
2343
  forms(
2344
+ offset: Int
2998
2345
  before: String
2999
2346
  after: String
3000
2347
  first: Int
3001
2348
  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
3012
-
3013
- """
3014
- Only return entries created after the given DateTime (Exclusive)
3015
- """
3016
- createdBefore: DateTime
3017
-
3018
- """
3019
- Only return entries created at or before the given DateTime (Inclusive)
3020
- """
3021
- createdAfter: DateTime
3022
- metaHasKey: String
3023
- metaValue: [JSONValueFilterType]
3024
- search: String
3025
-
3026
- """
3027
- FormOrdering
3028
- """
3029
- orderBy: [FormOrdering]
3030
- slugs: [String]
2349
+ filter: [FormFilterSetType]
2350
+ order: [FormOrderSetType]
3031
2351
  ): FormConnection
3032
2352
  source: Question
3033
2353
  }
@@ -3061,8 +2381,6 @@ type QuestionEdge {
3061
2381
  }
3062
2382
 
3063
2383
  input QuestionFilterSetType {
3064
- orderBy: [QuestionOrdering]
3065
- slug: String
3066
2384
  label: String
3067
2385
  isRequired: String
3068
2386
  isHidden: String
@@ -3080,6 +2398,7 @@ input QuestionFilterSetType {
3080
2398
  excludeForms: [ID]
3081
2399
  search: String
3082
2400
  slugs: [String]
2401
+ visibleInDocument: ID
3083
2402
  invert: Boolean
3084
2403
  }
3085
2404
 
@@ -3102,85 +2421,45 @@ Examples:
3102
2421
  """
3103
2422
  scalar QuestionJexl
3104
2423
 
3105
- """
3106
- An enumeration.
3107
- """
3108
- enum QuestionOrdering {
3109
- """
3110
- Label
3111
- """
3112
- LABEL_ASC
3113
-
3114
- """
3115
- Label (descending)
3116
- """
3117
- LABEL_DESC
3118
-
3119
- """
3120
- Created at
3121
- """
3122
- CREATED_AT_ASC
3123
-
3124
- """
3125
- Created at (descending)
3126
- """
3127
- CREATED_AT_DESC
3128
-
3129
- """
3130
- Modified at
3131
- """
3132
- MODIFIED_AT_ASC
3133
-
3134
- """
3135
- Modified at (descending)
3136
- """
3137
- MODIFIED_AT_DESC
3138
-
3139
- """
3140
- Created by user
3141
- """
3142
- CREATED_BY_USER_ASC
3143
-
3144
- """
3145
- Created by user (descending)
3146
- """
3147
- CREATED_BY_USER_DESC
2424
+ input QuestionOrderSetType {
2425
+ meta: String
2426
+ attribute: SortableQuestionAttributes
2427
+ direction: AscDesc
2428
+ }
3148
2429
 
3149
- """
3150
- Created by group
3151
- """
3152
- CREATED_BY_GROUP_ASC
2430
+ input RedoWorkItemInput {
2431
+ id: ID!
3153
2432
 
3154
2433
  """
3155
- Created by group (descending)
2434
+ Provide extra context for dynamic jexl transforms and events
3156
2435
  """
3157
- CREATED_BY_GROUP_DESC
2436
+ context: JSONString
2437
+ clientMutationId: String
2438
+ }
3158
2439
 
3159
- """
3160
- Modified by user
3161
- """
3162
- MODIFIED_BY_USER_ASC
2440
+ type RedoWorkItemPayload {
2441
+ workItem: WorkItem
2442
+ clientMutationId: String
2443
+ }
3163
2444
 
3164
- """
3165
- Modified by user (descending)
3166
- """
3167
- MODIFIED_BY_USER_DESC
2445
+ input RemoveAnalyticsFieldInput {
2446
+ id: ID!
2447
+ clientMutationId: String
2448
+ }
3168
2449
 
3169
- """
3170
- Modified by group
3171
- """
3172
- MODIFIED_BY_GROUP_ASC
2450
+ type RemoveAnalyticsFieldPayload {
2451
+ analyticsField: AnalyticsField
2452
+ clientMutationId: String
2453
+ }
3173
2454
 
3174
- """
3175
- Modified by group (descending)
3176
- """
3177
- MODIFIED_BY_GROUP_DESC
2455
+ input RemoveAnalyticsTableInput {
2456
+ slug: ID!
2457
+ clientMutationId: String
3178
2458
  }
3179
2459
 
3180
- input QuestionOrderSetType {
3181
- meta: String
3182
- attribute: SortableQuestionAttributes
3183
- direction: AscDesc
2460
+ type RemoveAnalyticsTablePayload {
2461
+ analyticsTable: AnalyticsTable
2462
+ clientMutationId: String
3184
2463
  }
3185
2464
 
3186
2465
  input RemoveAnswerInput {
@@ -3234,6 +2513,37 @@ type RemoveFormQuestionPayload {
3234
2513
  clientMutationId: String
3235
2514
  }
3236
2515
 
2516
+ input ReopenCaseInput {
2517
+ id: ID!
2518
+
2519
+ """
2520
+ List of work item ids to be readied when the case is reopened
2521
+ """
2522
+ workItems: [ID]!
2523
+
2524
+ """
2525
+ Provide extra context for dynamic jexl transforms and events
2526
+ """
2527
+ context: JSONString
2528
+ clientMutationId: String
2529
+ }
2530
+
2531
+ type ReopenCasePayload {
2532
+ case: Case
2533
+ clientMutationId: String
2534
+ }
2535
+
2536
+ input ReorderAnalyticsFieldsInput {
2537
+ table: ID!
2538
+ fields: [ID]!
2539
+ clientMutationId: String
2540
+ }
2541
+
2542
+ type ReorderAnalyticsFieldsPayload {
2543
+ analyticsTable: AnalyticsTable
2544
+ clientMutationId: String
2545
+ }
2546
+
3237
2547
  input ReorderFormQuestionsInput {
3238
2548
  form: ID!
3239
2549
  questions: [ID]!
@@ -3278,18 +2588,57 @@ type ResumeWorkItemPayload {
3278
2588
  input SaveActionButtonQuestionInput {
3279
2589
  label: String!
3280
2590
  slug: String!
3281
- infoText: String
3282
- isHidden: QuestionJexl
2591
+ infoText: String
2592
+ isHidden: QuestionJexl
2593
+ meta: JSONString
2594
+ isArchived: Boolean
2595
+ action: ButtonAction!
2596
+ color: ButtonColor!
2597
+ validateOnEnter: Boolean!
2598
+ clientMutationId: String
2599
+ }
2600
+
2601
+ type SaveActionButtonQuestionPayload {
2602
+ question: Question
2603
+ clientMutationId: String
2604
+ }
2605
+
2606
+ input SaveAnalyticsFieldInput {
2607
+ id: ID
2608
+ alias: String!
2609
+ table: ID!
2610
+ dataSource: String!
2611
+ filters: [String]
2612
+ showOutput: Boolean
2613
+ meta: JSONString
2614
+ function: AggregateFunction!
2615
+ createdByUser: String
2616
+ createdByGroup: String
2617
+ modifiedByUser: String
2618
+ modifiedByGroup: String
2619
+ clientMutationId: String
2620
+ }
2621
+
2622
+ type SaveAnalyticsFieldPayload {
2623
+ analyticsField: AnalyticsField
2624
+ clientMutationId: String
2625
+ }
2626
+
2627
+ input SaveAnalyticsTableInput {
2628
+ slug: String!
2629
+ name: String!
2630
+ startingObject: StartingObject!
2631
+ disableVisibilities: Boolean
3283
2632
  meta: JSONString
3284
- isArchived: Boolean
3285
- action: ButtonAction!
3286
- color: ButtonColor!
3287
- validateOnEnter: Boolean!
2633
+ createdByUser: String
2634
+ createdByGroup: String
2635
+ modifiedByUser: String
2636
+ modifiedByGroup: String
3288
2637
  clientMutationId: String
3289
2638
  }
3290
2639
 
3291
- type SaveActionButtonQuestionPayload {
3292
- question: Question
2640
+ type SaveAnalyticsTablePayload {
2641
+ analyticsTable: AnalyticsTable
3293
2642
  clientMutationId: String
3294
2643
  }
3295
2644
 
@@ -3302,6 +2651,7 @@ input SaveCalculatedFloatQuestionInput {
3302
2651
  meta: JSONString
3303
2652
  isArchived: Boolean
3304
2653
  calcExpression: QuestionJexl
2654
+ hintText: String
3305
2655
  clientMutationId: String
3306
2656
  }
3307
2657
 
@@ -3338,6 +2688,7 @@ input SaveChoiceQuestionInput {
3338
2688
  meta: JSONString
3339
2689
  isArchived: Boolean
3340
2690
  options: [ID]!
2691
+ hintText: String
3341
2692
  clientMutationId: String
3342
2693
  }
3343
2694
 
@@ -3374,6 +2725,11 @@ input SaveCompleteTaskFormTaskInput {
3374
2725
  `address_groups`.
3375
2726
  """
3376
2727
  isMultipleInstance: Boolean
2728
+
2729
+ """
2730
+ Whether to continue the flow if the multiple instance work item has ready siblings
2731
+ """
2732
+ continueAsync: Boolean
3377
2733
  form: ID!
3378
2734
  clientMutationId: String
3379
2735
  }
@@ -3411,6 +2767,11 @@ input SaveCompleteWorkflowFormTaskInput {
3411
2767
  `address_groups`.
3412
2768
  """
3413
2769
  isMultipleInstance: Boolean
2770
+
2771
+ """
2772
+ Whether to continue the flow if the multiple instance work item has ready siblings
2773
+ """
2774
+ continueAsync: Boolean
3414
2775
  clientMutationId: String
3415
2776
  }
3416
2777
 
@@ -3427,6 +2788,7 @@ input SaveDateQuestionInput {
3427
2788
  isHidden: QuestionJexl
3428
2789
  meta: JSONString
3429
2790
  isArchived: Boolean
2791
+ hintText: String
3430
2792
  clientMutationId: String
3431
2793
  }
3432
2794
 
@@ -3516,6 +2878,11 @@ input SaveDocumentDateAnswerInput {
3516
2878
  document: ID!
3517
2879
  meta: JSONString
3518
2880
  value: Date
2881
+
2882
+ """
2883
+ JSON object passed as context to the data source of dynamic questions
2884
+ """
2885
+ dataSourceContext: JSONString
3519
2886
  clientMutationId: String
3520
2887
  }
3521
2888
 
@@ -3524,16 +2891,20 @@ type SaveDocumentDateAnswerPayload {
3524
2891
  clientMutationId: String
3525
2892
  }
3526
2893
 
3527
- input SaveDocumentFileAnswerInput {
2894
+ input SaveDocumentFilesAnswerInput {
2895
+ value: [SaveFile]
3528
2896
  question: ID!
3529
2897
  document: ID!
3530
2898
  meta: JSONString
3531
- value: String
3532
- valueId: ID
2899
+
2900
+ """
2901
+ JSON object passed as context to the data source of dynamic questions
2902
+ """
2903
+ dataSourceContext: JSONString
3533
2904
  clientMutationId: String
3534
2905
  }
3535
2906
 
3536
- type SaveDocumentFileAnswerPayload {
2907
+ type SaveDocumentFilesAnswerPayload {
3537
2908
  answer: Answer
3538
2909
  clientMutationId: String
3539
2910
  }
@@ -3543,6 +2914,11 @@ input SaveDocumentFloatAnswerInput {
3543
2914
  document: ID!
3544
2915
  meta: JSONString
3545
2916
  value: Float
2917
+
2918
+ """
2919
+ JSON object passed as context to the data source of dynamic questions
2920
+ """
2921
+ dataSourceContext: JSONString
3546
2922
  clientMutationId: String
3547
2923
  }
3548
2924
 
@@ -3563,6 +2939,11 @@ input SaveDocumentIntegerAnswerInput {
3563
2939
  document: ID!
3564
2940
  meta: JSONString
3565
2941
  value: Int
2942
+
2943
+ """
2944
+ JSON object passed as context to the data source of dynamic questions
2945
+ """
2946
+ dataSourceContext: JSONString
3566
2947
  clientMutationId: String
3567
2948
  }
3568
2949
 
@@ -3576,6 +2957,11 @@ input SaveDocumentListAnswerInput {
3576
2957
  document: ID!
3577
2958
  meta: JSONString
3578
2959
  value: [String]
2960
+
2961
+ """
2962
+ JSON object passed as context to the data source of dynamic questions
2963
+ """
2964
+ dataSourceContext: JSONString
3579
2965
  clientMutationId: String
3580
2966
  }
3581
2967
 
@@ -3594,6 +2980,11 @@ input SaveDocumentStringAnswerInput {
3594
2980
  document: ID!
3595
2981
  meta: JSONString
3596
2982
  value: String
2983
+
2984
+ """
2985
+ JSON object passed as context to the data source of dynamic questions
2986
+ """
2987
+ dataSourceContext: JSONString
3597
2988
  clientMutationId: String
3598
2989
  }
3599
2990
 
@@ -3611,6 +3002,11 @@ input SaveDocumentTableAnswerInput {
3611
3002
  List of document IDs representing the rows in the table.
3612
3003
  """
3613
3004
  value: [ID]
3005
+
3006
+ """
3007
+ JSON object passed as context to the data source of dynamic questions
3008
+ """
3009
+ dataSourceContext: JSONString
3614
3010
  clientMutationId: String
3615
3011
  }
3616
3012
 
@@ -3628,6 +3024,7 @@ input SaveDynamicChoiceQuestionInput {
3628
3024
  meta: JSONString
3629
3025
  isArchived: Boolean
3630
3026
  dataSource: String!
3027
+ hintText: String
3631
3028
  clientMutationId: String
3632
3029
  }
3633
3030
 
@@ -3645,6 +3042,7 @@ input SaveDynamicMultipleChoiceQuestionInput {
3645
3042
  meta: JSONString
3646
3043
  isArchived: Boolean
3647
3044
  dataSource: String!
3045
+ hintText: String
3648
3046
  clientMutationId: String
3649
3047
  }
3650
3048
 
@@ -3653,7 +3051,12 @@ type SaveDynamicMultipleChoiceQuestionPayload {
3653
3051
  clientMutationId: String
3654
3052
  }
3655
3053
 
3656
- input SaveFileQuestionInput {
3054
+ input SaveFile {
3055
+ id: String
3056
+ name: String
3057
+ }
3058
+
3059
+ input SaveFilesQuestionInput {
3657
3060
  slug: String!
3658
3061
  label: String!
3659
3062
  infoText: String
@@ -3661,10 +3064,11 @@ input SaveFileQuestionInput {
3661
3064
  isHidden: QuestionJexl
3662
3065
  meta: JSONString
3663
3066
  isArchived: Boolean
3067
+ hintText: String
3664
3068
  clientMutationId: String
3665
3069
  }
3666
3070
 
3667
- type SaveFileQuestionPayload {
3071
+ type SaveFilesQuestionPayload {
3668
3072
  question: Question
3669
3073
  clientMutationId: String
3670
3074
  }
@@ -3680,6 +3084,7 @@ input SaveFloatQuestionInput {
3680
3084
  minValue: Float
3681
3085
  maxValue: Float
3682
3086
  placeholder: String
3087
+ hintText: String
3683
3088
  clientMutationId: String
3684
3089
  }
3685
3090
 
@@ -3731,6 +3136,7 @@ input SaveIntegerQuestionInput {
3731
3136
  minValue: Int
3732
3137
  maxValue: Int
3733
3138
  placeholder: String
3139
+ hintText: String
3734
3140
  clientMutationId: String
3735
3141
  }
3736
3142
 
@@ -3748,6 +3154,7 @@ input SaveMultipleChoiceQuestionInput {
3748
3154
  meta: JSONString
3749
3155
  isArchived: Boolean
3750
3156
  options: [ID]!
3157
+ hintText: String
3751
3158
  clientMutationId: String
3752
3159
  }
3753
3160
 
@@ -3797,6 +3204,11 @@ input SaveSimpleTaskInput {
3797
3204
  `address_groups`.
3798
3205
  """
3799
3206
  isMultipleInstance: Boolean
3207
+
3208
+ """
3209
+ Whether to continue the flow if the multiple instance work item has ready siblings
3210
+ """
3211
+ continueAsync: Boolean
3800
3212
  clientMutationId: String
3801
3213
  }
3802
3214
 
@@ -3834,6 +3246,7 @@ input SaveTableQuestionInput {
3834
3246
  Form that represents rows of a TableQuestion
3835
3247
  """
3836
3248
  rowForm: ID!
3249
+ hintText: String
3837
3250
  clientMutationId: String
3838
3251
  }
3839
3252
 
@@ -3853,6 +3266,7 @@ input SaveTextareaQuestionInput {
3853
3266
  minLength: Int
3854
3267
  maxLength: Int
3855
3268
  placeholder: String
3269
+ hintText: String
3856
3270
  formatValidators: [String]
3857
3271
  clientMutationId: String
3858
3272
  }
@@ -3873,6 +3287,7 @@ input SaveTextQuestionInput {
3873
3287
  minLength: Int
3874
3288
  maxLength: Int
3875
3289
  placeholder: String
3290
+ hintText: String
3876
3291
  formatValidators: [String]
3877
3292
  clientMutationId: String
3878
3293
  }
@@ -3946,9 +3361,16 @@ type SaveWorkItemPayload {
3946
3361
 
3947
3362
  """
3948
3363
  Lookup type to search in answers.
3364
+
3365
+ You may pass in a list of question slugs and/or a list of form slugs to define
3366
+ which answers to search. If you pass in one or more forms, answers to the
3367
+ questions in that form will be searched. If you pass in one or more question
3368
+ slug, the corresponding answers are searched. If you pass both, a superset
3369
+ of both is searched (ie. they do not limit each other).
3949
3370
  """
3950
3371
  input SearchAnswersFilterType {
3951
3372
  questions: [ID]
3373
+ forms: [ID]
3952
3374
  value: GenericScalar!
3953
3375
  lookup: SearchLookupMode
3954
3376
  }
@@ -4002,7 +3424,6 @@ type SimpleTask implements Task & Node {
4002
3424
  slug: String!
4003
3425
  name: String!
4004
3426
  description: String
4005
- type: TaskType!
4006
3427
  meta: GenericScalar!
4007
3428
  addressGroups: GroupJexl
4008
3429
  controlGroups: GroupJexl
@@ -4013,9 +3434,10 @@ type SimpleTask implements Task & Node {
4013
3434
  """
4014
3435
  leadTime: Int
4015
3436
  isMultipleInstance: Boolean!
3437
+ continueAsync: Boolean
4016
3438
 
4017
3439
  """
4018
- The ID of the object.
3440
+ The ID of the object
4019
3441
  """
4020
3442
  id: ID!
4021
3443
  }
@@ -4035,50 +3457,57 @@ type SkipWorkItemPayload {
4035
3457
  clientMutationId: String
4036
3458
  }
4037
3459
 
3460
+ enum SortableAnalyticsFieldAttributes {
3461
+ CREATED_AT
3462
+ MODIFIED_AT
3463
+ ALIAS
3464
+ }
3465
+
3466
+ enum SortableAnalyticsTableAttributes {
3467
+ CREATED_AT
3468
+ MODIFIED_AT
3469
+ SLUG
3470
+ NAME
3471
+ }
3472
+
4038
3473
  enum SortableAnswerAttributes {
4039
3474
  CREATED_AT
4040
3475
  MODIFIED_AT
4041
- CREATED_BY_USER
4042
- CREATED_BY_GROUP
4043
- MODIFIED_BY_USER
4044
- MODIFIED_BY_GROUP
4045
3476
  QUESTION
4046
3477
  VALUE
4047
- DOCUMENT
4048
3478
  DATE
4049
- FILE
4050
3479
  }
4051
3480
 
4052
3481
  enum SortableCaseAttributes {
4053
- ALLOW_ALL_FORMS
4054
- CREATED_BY_GROUP
4055
- CREATED_BY_USER
4056
- DESCRIPTION
4057
- IS_ARCHIVED
4058
- IS_PUBLISHED
4059
- NAME
3482
+ CREATED_AT
3483
+ MODIFIED_AT
4060
3484
  STATUS
4061
- SLUG
3485
+ DOCUMENT__FORM__NAME
4062
3486
  }
4063
3487
 
4064
3488
  enum SortableDocumentAttributes {
4065
3489
  CREATED_AT
4066
3490
  MODIFIED_AT
4067
- CREATED_BY_USER
4068
- CREATED_BY_GROUP
4069
- MODIFIED_BY_USER
4070
- MODIFIED_BY_GROUP
4071
3491
  FORM
4072
- SOURCE
3492
+ }
3493
+
3494
+ enum SortableDynamicOptionAttributes {
3495
+ CREATED_AT
3496
+ MODIFIED_AT
3497
+ SLUG
3498
+ LABEL
3499
+ QUESTION
3500
+ }
3501
+
3502
+ enum SortableFlowAttributes {
3503
+ CREATED_AT
3504
+ MODIFIED_AT
3505
+ TASK
4073
3506
  }
4074
3507
 
4075
3508
  enum SortableFormAttributes {
4076
3509
  CREATED_AT
4077
3510
  MODIFIED_AT
4078
- CREATED_BY_USER
4079
- CREATED_BY_GROUP
4080
- MODIFIED_BY_USER
4081
- MODIFIED_BY_GROUP
4082
3511
  SLUG
4083
3512
  NAME
4084
3513
  DESCRIPTION
@@ -4086,13 +3515,17 @@ enum SortableFormAttributes {
4086
3515
  IS_ARCHIVED
4087
3516
  }
4088
3517
 
3518
+ enum SortableOptionAttributes {
3519
+ CREATED_AT
3520
+ MODIFIED_AT
3521
+ SLUG
3522
+ LABEL
3523
+ IS_ARCHIVED
3524
+ }
3525
+
4089
3526
  enum SortableQuestionAttributes {
4090
3527
  CREATED_AT
4091
3528
  MODIFIED_AT
4092
- CREATED_BY_USER
4093
- CREATED_BY_GROUP
4094
- MODIFIED_BY_USER
4095
- MODIFIED_BY_GROUP
4096
3529
  SLUG
4097
3530
  LABEL
4098
3531
  TYPE
@@ -4101,26 +3534,25 @@ enum SortableQuestionAttributes {
4101
3534
  IS_ARCHIVED
4102
3535
  PLACEHOLDER
4103
3536
  INFO_TEXT
3537
+ HINT_TEXT
4104
3538
  CALC_EXPRESSION
4105
3539
  }
4106
3540
 
4107
3541
  enum SortableTaskAttributes {
4108
- ALLOW_ALL_FORMS
3542
+ CREATED_AT
3543
+ MODIFIED_AT
4109
3544
  LEAD_TIME
4110
3545
  TYPE
4111
- CREATED_BY_GROUP
4112
- CREATED_BY_USER
4113
3546
  DESCRIPTION
4114
3547
  IS_ARCHIVED
4115
- IS_PUBLISHED
4116
3548
  NAME
4117
3549
  SLUG
4118
3550
  }
4119
3551
 
4120
3552
  enum SortableWorkflowAttributes {
3553
+ CREATED_AT
3554
+ MODIFIED_AT
4121
3555
  ALLOW_ALL_FORMS
4122
- CREATED_BY_GROUP
4123
- CREATED_BY_USER
4124
3556
  DESCRIPTION
4125
3557
  IS_ARCHIVED
4126
3558
  IS_PUBLISHED
@@ -4129,37 +3561,24 @@ enum SortableWorkflowAttributes {
4129
3561
  }
4130
3562
 
4131
3563
  enum SortableWorkItemAttributes {
4132
- ALLOW_ALL_FORMS
4133
- CREATED_BY_GROUP
4134
- CREATED_BY_USER
4135
- DESCRIPTION
4136
3564
  CREATED_AT
4137
3565
  MODIFIED_AT
4138
3566
  CLOSED_AT
4139
- IS_ARCHIVED
4140
- IS_PUBLISHED
3567
+ DESCRIPTION
4141
3568
  NAME
4142
3569
  DEADLINE
4143
3570
  STATUS
4144
3571
  SLUG
3572
+ CASE__DOCUMENT__FORM__NAME
4145
3573
  }
4146
3574
 
4147
- input StartCaseInput {
4148
- workflow: ID!
4149
- meta: JSONString
4150
- parentWorkItem: ID
4151
- form: ID
4152
-
4153
- """
4154
- Provide extra context for dynamic jexl transforms and events
4155
- """
4156
- context: JSONString
4157
- clientMutationId: String
4158
- }
4159
-
4160
- type StartCasePayload {
4161
- case: Case
4162
- clientMutationId: String
3575
+ """
3576
+ An enumeration.
3577
+ """
3578
+ enum StartingObject {
3579
+ CASES
3580
+ WORK_ITEMS
3581
+ DOCUMENTS
4163
3582
  }
4164
3583
 
4165
3584
  type StaticQuestion implements Question & Node {
@@ -4183,45 +3602,19 @@ type StaticQuestion implements Question & Node {
4183
3602
  meta: GenericScalar!
4184
3603
  source: Question
4185
3604
  forms(
3605
+ offset: Int
4186
3606
  before: String
4187
3607
  after: String
4188
3608
  first: Int
4189
3609
  last: Int
4190
- metaValue: [JSONValueFilterType]
4191
-
4192
- """
4193
- FormOrdering
4194
- """
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
4206
-
4207
- """
4208
- Only return entries created after the given DateTime (Exclusive)
4209
- """
4210
- createdBefore: DateTime
4211
-
4212
- """
4213
- Only return entries created at or before the given DateTime (Inclusive)
4214
- """
4215
- createdAfter: DateTime
4216
- metaHasKey: String
4217
- search: String
4218
- slugs: [String]
3610
+ filter: [FormFilterSetType]
3611
+ order: [FormOrderSetType]
4219
3612
  ): FormConnection
4220
3613
  staticContent: String
4221
3614
  dataSource: String
4222
3615
 
4223
3616
  """
4224
- The ID of the object.
3617
+ The ID of the object
4225
3618
  """
4226
3619
  id: ID!
4227
3620
  }
@@ -4254,6 +3647,11 @@ enum Status {
4254
3647
  Work item is suspended.
4255
3648
  """
4256
3649
  SUSPENDED
3650
+
3651
+ """
3652
+ Work item has been marked for redo.
3653
+ """
3654
+ REDO
4257
3655
  }
4258
3656
 
4259
3657
  type StringAnswer implements Answer & Node {
@@ -4265,7 +3663,7 @@ type StringAnswer implements Answer & Node {
4265
3663
  modifiedByGroup: String
4266
3664
 
4267
3665
  """
4268
- The ID of the object.
3666
+ The ID of the object
4269
3667
  """
4270
3668
  id: ID!
4271
3669
  question: Question!
@@ -4313,7 +3711,7 @@ type TableAnswer implements Answer & Node {
4313
3711
  modifiedByGroup: String
4314
3712
 
4315
3713
  """
4316
- The ID of the object.
3714
+ The ID of the object
4317
3715
  """
4318
3716
  id: ID!
4319
3717
  question: Question!
@@ -4339,43 +3737,18 @@ type TableQuestion implements Question & Node {
4339
3737
  isHidden: QuestionJexl!
4340
3738
  isArchived: Boolean!
4341
3739
  infoText: String
3740
+ hintText: String
4342
3741
  meta: GenericScalar!
4343
3742
  source: Question
4344
3743
  defaultAnswer: TableAnswer
4345
3744
  forms(
3745
+ offset: Int
4346
3746
  before: String
4347
3747
  after: String
4348
3748
  first: Int
4349
3749
  last: Int
4350
- metaValue: [JSONValueFilterType]
4351
-
4352
- """
4353
- FormOrdering
4354
- """
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
4366
-
4367
- """
4368
- Only return entries created after the given DateTime (Exclusive)
4369
- """
4370
- createdBefore: DateTime
4371
-
4372
- """
4373
- Only return entries created at or before the given DateTime (Inclusive)
4374
- """
4375
- createdAfter: DateTime
4376
- metaHasKey: String
4377
- search: String
4378
- slugs: [String]
3750
+ filter: [FormFilterSetType]
3751
+ order: [FormOrderSetType]
4379
3752
  ): FormConnection
4380
3753
 
4381
3754
  """
@@ -4384,7 +3757,7 @@ type TableQuestion implements Question & Node {
4384
3757
  rowForm: Form
4385
3758
 
4386
3759
  """
4387
- The ID of the object.
3760
+ The ID of the object
4388
3761
  """
4389
3762
  id: ID!
4390
3763
  }
@@ -4396,201 +3769,66 @@ interface Task {
4396
3769
  createdByUser: String
4397
3770
  createdByGroup: String
4398
3771
  slug: String!
4399
- name: String!
4400
- description: String
4401
- isArchived: Boolean!
4402
- addressGroups: GroupJexl
4403
- controlGroups: GroupJexl
4404
- meta: GenericScalar!
4405
- isMultipleInstance: Boolean!
4406
- }
4407
-
4408
- type TaskConnection {
4409
- """
4410
- Pagination data for this connection.
4411
- """
4412
- pageInfo: PageInfo!
4413
-
4414
- """
4415
- Contains the nodes in this connection.
4416
- """
4417
- edges: [TaskEdge]!
4418
- totalCount: Int
4419
- }
4420
-
4421
- """
4422
- A Relay edge containing a `Task` and its cursor.
4423
- """
4424
- type TaskEdge {
4425
- """
4426
- The item at the end of the edge
4427
- """
4428
- node: Task
4429
-
4430
- """
4431
- A cursor for use in pagination
4432
- """
4433
- cursor: String!
4434
- }
4435
-
4436
- input TaskFilterSetType {
4437
- slug: String
4438
- name: String
4439
- description: String
4440
- type: Type
4441
- isArchived: Boolean
4442
- createdByUser: String
4443
- createdByGroup: String
4444
- modifiedByUser: String
4445
- modifiedByGroup: String
4446
- createdBefore: DateTime
4447
- createdAfter: DateTime
4448
- metaHasKey: String
4449
- metaValue: [JSONValueFilterType]
4450
- search: String
4451
- orderBy: [TaskOrdering]
4452
- invert: Boolean
4453
- }
4454
-
4455
- """
4456
- An enumeration.
4457
- """
4458
- enum TaskOrdering {
4459
- """
4460
- Name
4461
- """
4462
- NAME_ASC
4463
-
4464
- """
4465
- Name (descending)
4466
- """
4467
- NAME_DESC
4468
-
4469
- """
4470
- Description
4471
- """
4472
- DESCRIPTION_ASC
4473
-
4474
- """
4475
- Description (descending)
4476
- """
4477
- DESCRIPTION_DESC
4478
-
4479
- """
4480
- Type
4481
- """
4482
- TYPE_ASC
4483
-
4484
- """
4485
- Type (descending)
4486
- """
4487
- TYPE_DESC
4488
-
4489
- """
4490
- Created at
4491
- """
4492
- CREATED_AT_ASC
4493
-
4494
- """
4495
- Created at (descending)
4496
- """
4497
- CREATED_AT_DESC
4498
-
4499
- """
4500
- Modified at
4501
- """
4502
- MODIFIED_AT_ASC
4503
-
4504
- """
4505
- Modified at (descending)
4506
- """
4507
- MODIFIED_AT_DESC
4508
-
4509
- """
4510
- Created by user
4511
- """
4512
- CREATED_BY_USER_ASC
4513
-
4514
- """
4515
- Created by user (descending)
4516
- """
4517
- CREATED_BY_USER_DESC
4518
-
4519
- """
4520
- Created by group
4521
- """
4522
- CREATED_BY_GROUP_ASC
4523
-
4524
- """
4525
- Created by group (descending)
4526
- """
4527
- CREATED_BY_GROUP_DESC
4528
-
4529
- """
4530
- Modified by user
4531
- """
4532
- MODIFIED_BY_USER_ASC
4533
-
4534
- """
4535
- Modified by user (descending)
4536
- """
4537
- MODIFIED_BY_USER_DESC
4538
-
4539
- """
4540
- Modified by group
4541
- """
4542
- MODIFIED_BY_GROUP_ASC
4543
-
4544
- """
4545
- Modified by group (descending)
4546
- """
4547
- MODIFIED_BY_GROUP_DESC
4548
- }
4549
-
4550
- input TaskOrderSetType {
4551
- meta: String
4552
- attribute: SortableTaskAttributes
4553
- direction: AscDesc
3772
+ name: String!
3773
+ description: String
3774
+ isArchived: Boolean!
3775
+ addressGroups: GroupJexl
3776
+ controlGroups: GroupJexl
3777
+ meta: GenericScalar!
3778
+ isMultipleInstance: Boolean!
3779
+ continueAsync: Boolean
4554
3780
  }
4555
3781
 
4556
- """
4557
- An enumeration.
4558
- """
4559
- enum TaskType {
4560
- """
4561
- Task which can simply be marked as completed.
4562
- """
4563
- SIMPLE
4564
-
3782
+ type TaskConnection {
4565
3783
  """
4566
- Task to complete a defined workflow form.
3784
+ Pagination data for this connection.
4567
3785
  """
4568
- COMPLETE_WORKFLOW_FORM
3786
+ pageInfo: PageInfo!
4569
3787
 
4570
3788
  """
4571
- Task to complete a defined task form.
3789
+ Contains the nodes in this connection.
4572
3790
  """
4573
- COMPLETE_TASK_FORM
3791
+ edges: [TaskEdge]!
3792
+ totalCount: Int
4574
3793
  }
4575
3794
 
4576
3795
  """
4577
- An enumeration.
3796
+ A Relay edge containing a `Task` and its cursor.
4578
3797
  """
4579
- enum TaskTypeArgument {
3798
+ type TaskEdge {
4580
3799
  """
4581
- Task which can simply be marked as completed.
3800
+ The item at the end of the edge
4582
3801
  """
4583
- SIMPLE
3802
+ node: Task
4584
3803
 
4585
3804
  """
4586
- Task to complete a defined workflow form.
3805
+ A cursor for use in pagination
4587
3806
  """
4588
- COMPLETE_WORKFLOW_FORM
3807
+ cursor: String!
3808
+ }
4589
3809
 
4590
- """
4591
- Task to complete a defined task form.
4592
- """
4593
- COMPLETE_TASK_FORM
3810
+ input TaskFilterSetType {
3811
+ slug: String
3812
+ name: String
3813
+ description: String
3814
+ type: Type
3815
+ isArchived: Boolean
3816
+ createdByUser: String
3817
+ createdByGroup: String
3818
+ modifiedByUser: String
3819
+ modifiedByGroup: String
3820
+ createdBefore: DateTime
3821
+ createdAfter: DateTime
3822
+ metaHasKey: String
3823
+ metaValue: [JSONValueFilterType]
3824
+ search: String
3825
+ invert: Boolean
3826
+ }
3827
+
3828
+ input TaskOrderSetType {
3829
+ meta: String
3830
+ attribute: SortableTaskAttributes
3831
+ direction: AscDesc
4594
3832
  }
4595
3833
 
4596
3834
  type TextareaQuestion implements Question & Node {
@@ -4611,6 +3849,7 @@ type TextareaQuestion implements Question & Node {
4611
3849
  isArchived: Boolean!
4612
3850
  placeholder: String
4613
3851
  infoText: String
3852
+ hintText: String
4614
3853
  meta: GenericScalar!
4615
3854
  source: Question
4616
3855
  formatValidators(
@@ -4621,43 +3860,17 @@ type TextareaQuestion implements Question & Node {
4621
3860
  ): FormatValidatorConnection
4622
3861
  defaultAnswer: StringAnswer
4623
3862
  forms(
3863
+ offset: Int
4624
3864
  before: String
4625
3865
  after: String
4626
3866
  first: Int
4627
3867
  last: Int
4628
- metaValue: [JSONValueFilterType]
4629
-
4630
- """
4631
- FormOrdering
4632
- """
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
4644
-
4645
- """
4646
- Only return entries created after the given DateTime (Exclusive)
4647
- """
4648
- createdBefore: DateTime
4649
-
4650
- """
4651
- Only return entries created at or before the given DateTime (Inclusive)
4652
- """
4653
- createdAfter: DateTime
4654
- metaHasKey: String
4655
- search: String
4656
- slugs: [String]
3868
+ filter: [FormFilterSetType]
3869
+ order: [FormOrderSetType]
4657
3870
  ): FormConnection
4658
3871
 
4659
3872
  """
4660
- The ID of the object.
3873
+ The ID of the object
4661
3874
  """
4662
3875
  id: ID!
4663
3876
  minLength: Int
@@ -4682,6 +3895,7 @@ type TextQuestion implements Question & Node {
4682
3895
  isArchived: Boolean!
4683
3896
  placeholder: String
4684
3897
  infoText: String
3898
+ hintText: String
4685
3899
  meta: GenericScalar!
4686
3900
  source: Question
4687
3901
  formatValidators(
@@ -4692,43 +3906,17 @@ type TextQuestion implements Question & Node {
4692
3906
  ): FormatValidatorConnection
4693
3907
  defaultAnswer: StringAnswer
4694
3908
  forms(
3909
+ offset: Int
4695
3910
  before: String
4696
3911
  after: String
4697
3912
  first: Int
4698
3913
  last: Int
4699
- metaValue: [JSONValueFilterType]
4700
-
4701
- """
4702
- FormOrdering
4703
- """
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
4715
-
4716
- """
4717
- Only return entries created after the given DateTime (Exclusive)
4718
- """
4719
- createdBefore: DateTime
4720
-
4721
- """
4722
- Only return entries created at or before the given DateTime (Inclusive)
4723
- """
4724
- createdAfter: DateTime
4725
- metaHasKey: String
4726
- search: String
4727
- slugs: [String]
3914
+ filter: [FormFilterSetType]
3915
+ order: [FormOrderSetType]
4728
3916
  ): FormConnection
4729
3917
 
4730
3918
  """
4731
- The ID of the object.
3919
+ The ID of the object
4732
3920
  """
4733
3921
  id: ID!
4734
3922
  minLength: Int
@@ -4790,6 +3978,7 @@ type Workflow implements Node {
4790
3978
  List of forms which are allowed to start workflow with
4791
3979
  """
4792
3980
  allowForms(
3981
+ offset: Int
4793
3982
  before: String
4794
3983
  after: String
4795
3984
  first: Int
@@ -4797,7 +3986,7 @@ type Workflow implements Node {
4797
3986
  ): FormConnection!
4798
3987
 
4799
3988
  """
4800
- The ID of the object.
3989
+ The ID of the object
4801
3990
  """
4802
3991
  id: ID!
4803
3992
 
@@ -4806,26 +3995,13 @@ type Workflow implements Node {
4806
3995
  """
4807
3996
  tasks: [Task]!
4808
3997
  flows(
3998
+ offset: Int
4809
3999
  before: String
4810
4000
  after: String
4811
4001
  first: Int
4812
4002
  last: Int
4813
- task: ID
4814
4003
  filter: [FlowFilterSetType]
4815
- createdByUser: String
4816
- createdByGroup: String
4817
- modifiedByUser: String
4818
- modifiedByGroup: String
4819
-
4820
- """
4821
- Only return entries created after the given DateTime (Exclusive)
4822
- """
4823
- createdBefore: DateTime
4824
-
4825
- """
4826
- Only return entries created at or before the given DateTime (Inclusive)
4827
- """
4828
- createdAfter: DateTime
4004
+ order: [FlowOrderSetType]
4829
4005
  ): FlowConnection
4830
4006
  }
4831
4007
 
@@ -4872,95 +4048,9 @@ input WorkflowFilterSetType {
4872
4048
  metaHasKey: String
4873
4049
  metaValue: [JSONValueFilterType]
4874
4050
  search: String
4875
- orderBy: [WorkflowOrdering]
4876
4051
  invert: Boolean
4877
4052
  }
4878
4053
 
4879
- """
4880
- An enumeration.
4881
- """
4882
- enum WorkflowOrdering {
4883
- """
4884
- Name
4885
- """
4886
- NAME_ASC
4887
-
4888
- """
4889
- Name (descending)
4890
- """
4891
- NAME_DESC
4892
-
4893
- """
4894
- Description
4895
- """
4896
- DESCRIPTION_ASC
4897
-
4898
- """
4899
- Description (descending)
4900
- """
4901
- DESCRIPTION_DESC
4902
-
4903
- """
4904
- Created at
4905
- """
4906
- CREATED_AT_ASC
4907
-
4908
- """
4909
- Created at (descending)
4910
- """
4911
- CREATED_AT_DESC
4912
-
4913
- """
4914
- Modified at
4915
- """
4916
- MODIFIED_AT_ASC
4917
-
4918
- """
4919
- Modified at (descending)
4920
- """
4921
- MODIFIED_AT_DESC
4922
-
4923
- """
4924
- Created by user
4925
- """
4926
- CREATED_BY_USER_ASC
4927
-
4928
- """
4929
- Created by user (descending)
4930
- """
4931
- CREATED_BY_USER_DESC
4932
-
4933
- """
4934
- Created by group
4935
- """
4936
- CREATED_BY_GROUP_ASC
4937
-
4938
- """
4939
- Created by group (descending)
4940
- """
4941
- CREATED_BY_GROUP_DESC
4942
-
4943
- """
4944
- Modified by user
4945
- """
4946
- MODIFIED_BY_USER_ASC
4947
-
4948
- """
4949
- Modified by user (descending)
4950
- """
4951
- MODIFIED_BY_USER_DESC
4952
-
4953
- """
4954
- Modified by group
4955
- """
4956
- MODIFIED_BY_GROUP_ASC
4957
-
4958
- """
4959
- Modified by group (descending)
4960
- """
4961
- MODIFIED_BY_GROUP_DESC
4962
- }
4963
-
4964
4054
  input WorkflowOrderSetType {
4965
4055
  meta: String
4966
4056
  attribute: SortableWorkflowAttributes
@@ -4976,7 +4066,7 @@ type WorkItem implements Node {
4976
4066
  modifiedByGroup: String
4977
4067
 
4978
4068
  """
4979
- The ID of the object.
4069
+ The ID of the object
4980
4070
  """
4981
4071
  id: ID!
4982
4072
 
@@ -5000,20 +4090,8 @@ type WorkItem implements Node {
5000
4090
  task: Task!
5001
4091
  status: WorkItemStatus!
5002
4092
  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
4093
  addressedGroups: [String]!
5008
-
5009
- """
5010
- List of groups this work item is assigned to for controlling.
5011
- """
5012
4094
  controllingGroups: [String]!
5013
-
5014
- """
5015
- Users responsible to undertake given work item.
5016
- """
5017
4095
  assignedUsers: [String]!
5018
4096
  case: Case!
5019
4097
 
@@ -5024,11 +4102,19 @@ type WorkItem implements Node {
5024
4102
  document: Document
5025
4103
  previousWorkItem: WorkItem
5026
4104
  succeedingWorkItems(
4105
+ offset: Int
5027
4106
  before: String
5028
4107
  after: String
5029
4108
  first: Int
5030
4109
  last: Int
5031
4110
  ): WorkItemConnection!
4111
+
4112
+ """
4113
+ This property potentially performs poorly if used in a large setof entries, as
4114
+ the evaluation of the redoable jexl configurationcannot be performed on the
4115
+ database level. Please use carefully.
4116
+ """
4117
+ isRedoable: Boolean
5032
4118
  }
5033
4119
 
5034
4120
  type WorkItemConnection {
@@ -5080,7 +4166,6 @@ input WorkItemFilterSetType {
5080
4166
  metaHasKey: String
5081
4167
  metaValue: [JSONValueFilterType]
5082
4168
  id: ID
5083
- orderBy: [WorkItemOrdering]
5084
4169
  addressedGroups: [String]
5085
4170
  controllingGroups: [String]
5086
4171
  assignedUsers: [String]
@@ -5088,94 +4173,10 @@ input WorkItemFilterSetType {
5088
4173
  caseDocumentHasAnswer: [HasAnswerFilterType]
5089
4174
  caseMetaValue: [JSONValueFilterType]
5090
4175
  rootCaseMetaValue: [JSONValueFilterType]
4176
+ caseSearchAnswers: [SearchAnswersFilterType]
5091
4177
  invert: Boolean
5092
4178
  }
5093
4179
 
5094
- """
5095
- An enumeration.
5096
- """
5097
- enum WorkItemOrdering {
5098
- """
5099
- Status
5100
- """
5101
- STATUS_ASC
5102
-
5103
- """
5104
- Status (descending)
5105
- """
5106
- STATUS_DESC
5107
-
5108
- """
5109
- Deadline
5110
- """
5111
- DEADLINE_ASC
5112
-
5113
- """
5114
- Deadline (descending)
5115
- """
5116
- DEADLINE_DESC
5117
-
5118
- """
5119
- Created at
5120
- """
5121
- CREATED_AT_ASC
5122
-
5123
- """
5124
- Created at (descending)
5125
- """
5126
- CREATED_AT_DESC
5127
-
5128
- """
5129
- Modified at
5130
- """
5131
- MODIFIED_AT_ASC
5132
-
5133
- """
5134
- Modified at (descending)
5135
- """
5136
- MODIFIED_AT_DESC
5137
-
5138
- """
5139
- Created by user
5140
- """
5141
- CREATED_BY_USER_ASC
5142
-
5143
- """
5144
- Created by user (descending)
5145
- """
5146
- CREATED_BY_USER_DESC
5147
-
5148
- """
5149
- Created by group
5150
- """
5151
- CREATED_BY_GROUP_ASC
5152
-
5153
- """
5154
- Created by group (descending)
5155
- """
5156
- CREATED_BY_GROUP_DESC
5157
-
5158
- """
5159
- Modified by user
5160
- """
5161
- MODIFIED_BY_USER_ASC
5162
-
5163
- """
5164
- Modified by user (descending)
5165
- """
5166
- MODIFIED_BY_USER_DESC
5167
-
5168
- """
5169
- Modified by group
5170
- """
5171
- MODIFIED_BY_GROUP_ASC
5172
-
5173
- """
5174
- Modified by group (descending)
5175
- """
5176
- MODIFIED_BY_GROUP_DESC
5177
- }
5178
-
5179
4180
  input WorkItemOrderSetType {
5180
4181
  meta: String
5181
4182
  caseMeta: String
@@ -5189,58 +4190,10 @@ input WorkItemOrderSetType {
5189
4190
  An enumeration.
5190
4191
  """
5191
4192
  enum WorkItemStatus {
5192
- """
5193
- Work item is ready to be processed.
5194
- """
5195
- READY
5196
-
5197
- """
5198
- Work item is done.
5199
- """
5200
- COMPLETED
5201
-
5202
- """
5203
- Work item is canceled.
5204
- """
5205
- CANCELED
5206
-
5207
- """
5208
- Work item is skipped.
5209
- """
5210
- SKIPPED
5211
-
5212
- """
5213
- Work item is suspended.
5214
- """
5215
- SUSPENDED
5216
- }
5217
-
5218
- """
5219
- An enumeration.
5220
- """
5221
- enum WorkItemStatusArgument {
5222
- """
5223
- Work item is ready to be processed.
5224
- """
5225
4193
  READY
5226
-
5227
- """
5228
- Work item is done.
5229
- """
5230
4194
  COMPLETED
5231
-
5232
- """
5233
- Work item is canceled.
5234
- """
5235
4195
  CANCELED
5236
-
5237
- """
5238
- Work item is skipped.
5239
- """
5240
4196
  SKIPPED
5241
-
5242
- """
5243
- Work item is suspended.
5244
- """
5245
4197
  SUSPENDED
4198
+ REDO
5246
4199
  }