@things-factory/operato-gangsters 6.0.21 → 6.0.24

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.
Files changed (2) hide show
  1. package/package.json +28 -30
  2. package/schema.gql +3881 -0
package/schema.gql ADDED
@@ -0,0 +1,3881 @@
1
+ # -----------------------------------------------
2
+ # !!! THIS FILE WAS GENERATED BY TYPE-GRAPHQL !!!
3
+ # !!! DO NOT MODIFY THIS FILE BY YOURSELF !!!
4
+ # -----------------------------------------------
5
+
6
+ schema {
7
+ query: Query
8
+ mutation: Mutation
9
+ subscription: Subscription
10
+ }
11
+
12
+ type AccessToken {
13
+ accesToken: String!
14
+ refreshToken: String!
15
+ }
16
+
17
+ """Entity for Activity"""
18
+ type Activity {
19
+ activityType: String
20
+ assigneeRole: Role
21
+ """User assigned to the client application"""
22
+ client: User
23
+ createdAt: Timestamp
24
+ creator: User
25
+ cycleTime: Float
26
+ description: String
27
+ domain: Domain
28
+ id: ID!
29
+ issuerRole: Role
30
+ leadTime: Float
31
+ model: [ActivityModelItem!]
32
+ name: String
33
+ priority: Float
34
+ reportSource: String
35
+ reportType: String
36
+ schedule: String
37
+ standardTime: Float
38
+ startable: Boolean
39
+ state: String
40
+ supervisoryRole: Role
41
+ tactTime: Float
42
+ thumbnail: String
43
+ uiSource: String
44
+ uiType: String
45
+ updatedAt: Timestamp
46
+ updater: User
47
+ version: Float
48
+ }
49
+
50
+ """Entity for ActivityApproval"""
51
+ type ActivityApproval {
52
+ activityThread: ActivityThread
53
+ approver: User
54
+ comment: String
55
+ createdAt: Timestamp
56
+ creator: User
57
+ derivedApprovals: [ActivityApproval!]!
58
+ domain: Domain
59
+ id: ID!
60
+ judgment: String
61
+ """Nth order approval for given activity thread"""
62
+ order: Float
63
+ """delegator approval"""
64
+ originalApproval: ActivityApproval
65
+ round: Float
66
+ terminatedAt: Timestamp
67
+ terminator: User
68
+ transaction: String
69
+ updatedAt: Timestamp
70
+ updater: User
71
+ }
72
+
73
+ type ActivityApprovalList {
74
+ items: [ActivityApproval!]!
75
+ total: Int!
76
+ }
77
+
78
+ """Entity for ActivityInstance"""
79
+ type ActivityInstance {
80
+ activity: Activity
81
+ activityThreads: [ActivityThread!]!
82
+ activityType: String
83
+ adhocType: String
84
+ approvalLine: [ApprovalLineItem!]
85
+ assignedAt: Timestamp
86
+ assigneeRole: Role
87
+ createdAt: Timestamp
88
+ creator: User
89
+ description: String
90
+ domain: Domain
91
+ dueAt: Timestamp
92
+ id: ID!
93
+ input: Object
94
+ name: String
95
+ output: Object
96
+ priority: Float
97
+ reason: String
98
+ refBy: String
99
+ startedAt: Timestamp
100
+ starter: User
101
+ state: String
102
+ supervisoryRole: Role
103
+ terminatedAt: Timestamp
104
+ terminator: User
105
+ threadsMax: Int
106
+ threadsMin: Int
107
+ thumbnail: String
108
+ transaction: String
109
+ uiSource: String
110
+ uiType: String
111
+ updatedAt: Timestamp
112
+ updater: User
113
+ version: Float
114
+ }
115
+
116
+ type ActivityInstanceList {
117
+ items: [ActivityInstance!]!
118
+ total: Int!
119
+ }
120
+
121
+ input ActivityInstancePatch {
122
+ approvalLine: Object
123
+ cuFlag: String
124
+ description: String
125
+ dueAt: Date
126
+ id: ID
127
+ input: Object
128
+ name: String
129
+ priority: Float
130
+ state: String
131
+ threadsMax: Int
132
+ threadsMin: Int
133
+ }
134
+
135
+ input ActivityInstancePost {
136
+ activityId: String
137
+ activityType: String
138
+ adhocType: String
139
+ approvalLine: Object
140
+ assigneeRole: ObjectRef
141
+ """Email of assignee users"""
142
+ assignees: [String!]
143
+ description: String
144
+ dueAt: Date
145
+ id: ID
146
+ input: Object
147
+ name: String
148
+ priority: Float
149
+ reason: String
150
+ refBy: String
151
+ supervisoryRole: ObjectRef
152
+ threadsMax: Int
153
+ threadsMin: Int
154
+ uiSource: String
155
+ uiType: String
156
+ }
157
+
158
+ type ActivityList {
159
+ items: [Activity!]!
160
+ total: Int!
161
+ }
162
+
163
+ """Entity for ActivityModelItem"""
164
+ type ActivityModelItem {
165
+ active: Boolean
166
+ description: String
167
+ hidden: Boolean
168
+ inout: ActivityModelItemInoutType
169
+ mandatory: Boolean
170
+ name: String!
171
+ options: Object
172
+ quantifier: [Int!]
173
+ spec: Object
174
+ tag: String
175
+ type: String
176
+ unit: String
177
+ }
178
+
179
+ """inout enumeration of a activity-model-item"""
180
+ enum ActivityModelItemInoutType {
181
+ in
182
+ inout
183
+ out
184
+ }
185
+
186
+ input ActivityPatch {
187
+ activityType: String
188
+ assigneeRole: ObjectRef
189
+ cuFlag: String
190
+ cycleTime: Float
191
+ description: String
192
+ id: ID
193
+ issuerRole: ObjectRef
194
+ leadTime: Float
195
+ model: Object
196
+ name: String
197
+ priority: Float
198
+ reportSource: String
199
+ reportType: String
200
+ schedule: String
201
+ standardTime: Float
202
+ startable: Boolean
203
+ supervisoryRole: ObjectRef
204
+ tactTime: Float
205
+ thumbnail: Upload
206
+ uiSource: String
207
+ uiType: String
208
+ }
209
+
210
+ """Object Type for My Activity Summary"""
211
+ type ActivitySummary {
212
+ numberOfApprovalWaitings: Float
213
+ numberOfDrafts: Float
214
+ numberOfPicks: Float
215
+ numberOfToDos: Float
216
+ }
217
+
218
+ """Entity for ActivityTemplate"""
219
+ type ActivityTemplate {
220
+ active: Boolean
221
+ activityType: String
222
+ category: String
223
+ createdAt: Timestamp
224
+ creator: User
225
+ description: String
226
+ domain: Domain
227
+ id: ID!
228
+ model: [ActivityModelItem!]
229
+ name: String
230
+ reportSource: String
231
+ reportType: String
232
+ state: String
233
+ thumbnail: String
234
+ uiSource: String
235
+ uiType: String
236
+ updatedAt: Timestamp
237
+ updater: User
238
+ version: Float
239
+ visibility: String
240
+ }
241
+
242
+ type ActivityTemplateList {
243
+ items: [ActivityTemplate!]!
244
+ total: Int!
245
+ }
246
+
247
+ input ActivityTemplatePatch {
248
+ active: Boolean
249
+ activityType: String
250
+ category: String
251
+ cuFlag: String
252
+ description: String
253
+ id: ID
254
+ model: Object
255
+ name: String
256
+ reportSource: String
257
+ reportType: String
258
+ state: String
259
+ thumbnail: Upload
260
+ uiSource: String
261
+ uiType: String
262
+ visibility: String
263
+ }
264
+
265
+ """Entity for ActivityThread"""
266
+ type ActivityThread {
267
+ activityInstance: ActivityInstance
268
+ assignedAt: Timestamp
269
+ assignee: User
270
+ createdAt: Timestamp
271
+ creator: User
272
+ domain: Domain
273
+ dueAt: Timestamp
274
+ id: ID!
275
+ output: Object
276
+ round: Float
277
+ startedAt: Timestamp
278
+ state: String
279
+ terminatedAt: Timestamp
280
+ terminator: User
281
+ transaction: String
282
+ updatedAt: Timestamp
283
+ updater: User
284
+ version: Float
285
+ }
286
+
287
+ type ActivityThreadList {
288
+ items: [ActivityThread!]!
289
+ total: Int!
290
+ }
291
+
292
+ input ActivityThreadSave {
293
+ output: Object
294
+ }
295
+
296
+ """Any Scalar type (String, Boolean, Int, Float, Object, List)"""
297
+ scalar Any
298
+
299
+ type AppBinding {
300
+ application: Application
301
+ createdAt: Timestamp
302
+ creator: User!
303
+ description: String
304
+ domains: [Domain!]!
305
+ email: String!
306
+ id: ID!
307
+ locale: String
308
+ name: String!
309
+ owner: Boolean
310
+ reference: String
311
+ refreshToken: String
312
+ roles: [Role!]!
313
+ scope: String
314
+ status: String!
315
+ updatedAt: Timestamp
316
+ updater: User!
317
+ userType: String
318
+ }
319
+
320
+ type AppBindingList {
321
+ items: [AppBinding!]
322
+ total: Int
323
+ }
324
+
325
+ type Appliance {
326
+ accessToken: String
327
+ brand: String
328
+ createdAt: Timestamp
329
+ creator: User
330
+ description: String
331
+ domain: Domain!
332
+ id: ID!
333
+ model: String
334
+ name: String!
335
+ netmask: String
336
+ serialNo: String
337
+ updatedAt: Timestamp
338
+ updater: User
339
+ }
340
+
341
+ type ApplianceList {
342
+ items: [Appliance!]
343
+ total: Int
344
+ }
345
+
346
+ input AppliancePatch {
347
+ brand: String
348
+ description: String
349
+ id: ID
350
+ model: String
351
+ name: String
352
+ netmask: String
353
+ serialNo: String
354
+ }
355
+
356
+ type Application {
357
+ accessTokenUrl: String!
358
+ appKey: String
359
+ appSecret: String
360
+ authUrl: String!
361
+ availableScopes: String!
362
+ createdAt: Timestamp
363
+ creator: User
364
+ description: String
365
+ domain: Domain!
366
+ email: String!
367
+ icon: String
368
+ id: ID!
369
+ name: String!
370
+ redirectUrl: String!
371
+ status: String!
372
+ type: String!
373
+ updatedAt: Timestamp
374
+ updater: User
375
+ url: String!
376
+ webhook: String
377
+ }
378
+
379
+ type ApplicationList {
380
+ items: [Application!]
381
+ total: Int
382
+ }
383
+
384
+ input ApplicationPatch {
385
+ description: String
386
+ email: String
387
+ icon: String
388
+ name: String
389
+ redirectUrl: String
390
+ type: ApplicationType
391
+ url: String
392
+ webhook: String
393
+ }
394
+
395
+ """state enumeration of a application"""
396
+ enum ApplicationType {
397
+ MMS
398
+ OTHERS
399
+ SELLERCRAFT
400
+ SFTP
401
+ XERO
402
+ XILNEX
403
+ }
404
+
405
+ """Entity for ApprovalLine"""
406
+ type ApprovalLine {
407
+ createdAt: Timestamp
408
+ creator: User
409
+ description: String
410
+ domain: Domain
411
+ id: ID!
412
+ model: [ApprovalLineItem!]
413
+ name: String
414
+ owner: ApprovalLineOwner
415
+ ownerEmployee: Employee
416
+ ownerType: String
417
+ ownerValue: String
418
+ updatedAt: Timestamp
419
+ updater: User
420
+ }
421
+
422
+ """Entity for approval line item"""
423
+ type ApprovalLineItem {
424
+ approver: ApproverTarget
425
+ type: String
426
+ value: String
427
+ }
428
+
429
+ type ApprovalLineList {
430
+ items: [ApprovalLine!]!
431
+ total: Int!
432
+ }
433
+
434
+ type ApprovalLineOwner {
435
+ controlNo: String
436
+ """Field description"""
437
+ description: String
438
+ """Field id"""
439
+ id: ID!
440
+ """Field name"""
441
+ name: String
442
+ }
443
+
444
+ """type enumeration of a approvalLineOwner"""
445
+ enum ApprovalLineOwnerType {
446
+ Common
447
+ Employee
448
+ }
449
+
450
+ input ApprovalLinePatch {
451
+ cuFlag: String
452
+ description: String
453
+ id: ID
454
+ model: Object
455
+ name: String
456
+ owner: ObjectRefApprovalLineOwnerType
457
+ ownerType: ApprovalLineOwnerType
458
+ }
459
+
460
+ type ApproverTarget {
461
+ controlNo: String
462
+ """Field description"""
463
+ description: String
464
+ """Field id"""
465
+ id: ID!
466
+ """Field name"""
467
+ name: String
468
+ }
469
+
470
+ type Attachment {
471
+ category: String
472
+ createdAt: Timestamp!
473
+ creator: User
474
+ description: String
475
+ domain: Domain!
476
+ encoding: String!
477
+ fullpath: String!
478
+ id: ID!
479
+ mimetype: String!
480
+ name: String!
481
+ path: String!
482
+ refBy: String
483
+ refType: String
484
+ size: String!
485
+ updatedAt: Timestamp!
486
+ updater: User
487
+ }
488
+
489
+ type AttachmentList {
490
+ items: [Attachment!]!
491
+ total: Int!
492
+ }
493
+
494
+ input AttachmentPatch {
495
+ category: String
496
+ description: String
497
+ encoding: String
498
+ file: Upload
499
+ mimetype: String
500
+ name: String
501
+ refBy: String
502
+ refType: String
503
+ }
504
+
505
+ """Entity for Visualization Board"""
506
+ type Board {
507
+ createdAt: Timestamp
508
+ creator: User
509
+ description: String
510
+ domain: Domain
511
+ group: Group
512
+ id: ID
513
+ model: String
514
+ name: String!
515
+ playGroups: [PlayGroup!]
516
+ thumbnail: String
517
+ updatedAt: Timestamp
518
+ updater: User
519
+ }
520
+
521
+ type BoardList {
522
+ items: [Board!]!
523
+ total: Int!
524
+ }
525
+
526
+ input BoardPatch {
527
+ description: String
528
+ groupId: String
529
+ model: String
530
+ name: String
531
+ thumbnail: String
532
+ }
533
+
534
+ type BoardSetting {
535
+ board: Board!
536
+ id: ID!
537
+ name: String!
538
+ value: String!
539
+ }
540
+
541
+ """Entity for CommonCode"""
542
+ type CommonCode {
543
+ createdAt: Timestamp
544
+ creator: User
545
+ description: String
546
+ details: [CommonCodeDetail!]!
547
+ domain: Domain
548
+ id: ID!
549
+ name: String!
550
+ updatedAt: Timestamp
551
+ updater: User
552
+ }
553
+
554
+ """Entity for CommonCodeDetail"""
555
+ type CommonCodeDetail {
556
+ commonCode: CommonCode
557
+ createdAt: Timestamp
558
+ creator: User
559
+ description: String
560
+ domain: Domain
561
+ id: ID!
562
+ name: String!
563
+ rank: Float
564
+ updatedAt: Timestamp
565
+ updater: User
566
+ }
567
+
568
+ type CommonCodeDetailList {
569
+ items: [CommonCodeDetail!]!
570
+ total: Int!
571
+ }
572
+
573
+ input CommonCodeDetailPatch {
574
+ commonCode: ObjectRef!
575
+ cuFlag: String
576
+ description: String
577
+ id: ID
578
+ name: String
579
+ rank: Float
580
+ }
581
+
582
+ type CommonCodeList {
583
+ items: [CommonCode!]!
584
+ total: Int!
585
+ }
586
+
587
+ input CommonCodePatch {
588
+ cuFlag: String
589
+ description: String
590
+ details: [String!]
591
+ id: ID
592
+ name: String
593
+ }
594
+
595
+ type Connection {
596
+ active: Boolean
597
+ createdAt: Timestamp
598
+ creator: User
599
+ description: String
600
+ domain: Domain
601
+ endpoint: String
602
+ id: ID!
603
+ name: String!
604
+ params: String
605
+ state: String
606
+ type: String
607
+ updatedAt: Timestamp
608
+ updater: User
609
+ }
610
+
611
+ type ConnectionList {
612
+ items: [Connection!]!
613
+ total: Int!
614
+ }
615
+
616
+ input ConnectionPatch {
617
+ active: Boolean
618
+ cuFlag: String!
619
+ description: String
620
+ endpoint: String
621
+ id: ID
622
+ name: String
623
+ params: String
624
+ type: String
625
+ }
626
+
627
+ type ConnectionState {
628
+ description: String
629
+ domain: Domain
630
+ id: String
631
+ name: String
632
+ state: String
633
+ timestamp: Timestamp
634
+ type: String
635
+ }
636
+
637
+ type ConnectorList {
638
+ items: [ConnectorType!]!
639
+ total: Int!
640
+ }
641
+
642
+ type ConnectorType {
643
+ description: String
644
+ help: String
645
+ name: String!
646
+ parameterSpec: [PropertySpec!]
647
+ taskPrefixes: [String!]
648
+ }
649
+
650
+ """Entity for Contact"""
651
+ type Contact {
652
+ address: String
653
+ company: String
654
+ createdAt: Timestamp
655
+ creator: User
656
+ deletedAt: Timestamp
657
+ department: String
658
+ domain: Domain
659
+ email: String
660
+ id: ID!
661
+ items: [ContactItem!]
662
+ name: String
663
+ note: String
664
+ phone: String
665
+ profile: Profile
666
+ updatedAt: Timestamp
667
+ updater: User
668
+ }
669
+
670
+ type ContactItem {
671
+ label: String!
672
+ type: String!
673
+ value: String!
674
+ }
675
+
676
+ input ContactItemPatch {
677
+ label: String!
678
+ type: String!
679
+ value: String!
680
+ }
681
+
682
+ type ContactList {
683
+ items: [Contact!]!
684
+ total: Int!
685
+ }
686
+
687
+ input ContactPatch {
688
+ address: String
689
+ company: String
690
+ cuFlag: String
691
+ department: String
692
+ email: String
693
+ id: ID
694
+ items: [ContactItemPatch!]
695
+ name: String
696
+ note: String
697
+ phone: String
698
+ profile: ProfileInput
699
+ }
700
+
701
+ type Data {
702
+ """Data delivered by subscription"""
703
+ data: Object
704
+ """The domain where the data originated"""
705
+ domain: Domain
706
+ """Tag name attached to data"""
707
+ tag: String!
708
+ }
709
+
710
+ """Entity for DataArchive"""
711
+ type DataArchive {
712
+ createdAt: Timestamp
713
+ creator: User
714
+ domain: Domain
715
+ downloadUrl: String
716
+ id: ID!
717
+ requestParams: Object
718
+ status: String
719
+ type: String
720
+ updatedAt: Timestamp
721
+ updater: User
722
+ }
723
+
724
+ type DataArchiveList {
725
+ items: [DataArchive!]!
726
+ total: Int!
727
+ }
728
+
729
+ input DataArchivePatch {
730
+ cuFlag: String
731
+ downloadUrl: String
732
+ id: ID
733
+ requestParams: Object
734
+ status: String
735
+ type: String
736
+ }
737
+
738
+ """Entity for DataItem"""
739
+ type DataItem {
740
+ active: Boolean
741
+ description: String
742
+ hidden: Boolean
743
+ name: String!
744
+ options: Object
745
+ quota: Int
746
+ spec: Object
747
+ tag: String
748
+ type: String
749
+ unit: String
750
+ }
751
+
752
+ input DataItemPatch {
753
+ active: Boolean
754
+ description: String
755
+ hidden: Boolean
756
+ name: String
757
+ options: Object
758
+ quota: Int
759
+ spec: Object
760
+ tag: String
761
+ type: DataItemType
762
+ unit: String
763
+ }
764
+
765
+ """type enumeration of a data-item"""
766
+ enum DataItemType {
767
+ boolean
768
+ file
769
+ number
770
+ select
771
+ text
772
+ }
773
+
774
+ """Entity for DataKeyItem"""
775
+ type DataKeyItem {
776
+ dataKey: String
777
+ description: String
778
+ name: String!
779
+ tKey: String
780
+ }
781
+
782
+ input DataKeyItemPatch {
783
+ dataKey: String
784
+ description: String
785
+ name: String
786
+ tKey: String
787
+ }
788
+
789
+ """Entity for DataKeySet"""
790
+ type DataKeySet {
791
+ active: Boolean
792
+ createdAt: Timestamp
793
+ creator: User
794
+ dataKeyItems: [DataKeyItem!]
795
+ description: String
796
+ domain: Domain
797
+ id: ID!
798
+ name: String!
799
+ reportType: String
800
+ reportView: String
801
+ thumbnail: String
802
+ updatedAt: Timestamp
803
+ updater: User
804
+ }
805
+
806
+ type DataKeySetList {
807
+ items: [DataKeySet!]!
808
+ total: Int!
809
+ }
810
+
811
+ input DataKeySetPatch {
812
+ active: Boolean
813
+ cuFlag: String
814
+ dataKeyItems: [DataKeyItemPatch!]
815
+ description: String
816
+ id: ID
817
+ name: String
818
+ reportType: String
819
+ reportView: String
820
+ thumbnail: Upload
821
+ }
822
+
823
+ """Entity for Out of control data"""
824
+ type DataOoc {
825
+ collectedAt: Timestamp
826
+ correctedAt: Timestamp
827
+ correctiveAction: String
828
+ corrector: User
829
+ createdAt: Timestamp
830
+ creator: User
831
+ data: Object
832
+ dataItems: [DataItem!]
833
+ dataSet: DataSet
834
+ dataSetVersion: Float
835
+ description: String
836
+ domain: Domain
837
+ history: Object
838
+ id: ID!
839
+ judgment: Object
840
+ key01: String
841
+ key02: String
842
+ key03: String
843
+ key04: String
844
+ key05: String
845
+ name: String!
846
+ ooc: Boolean
847
+ oos: Boolean
848
+ partitionKeys: Object
849
+ rawData: String
850
+ source: String
851
+ state: String
852
+ type: String
853
+ updatedAt: Timestamp
854
+ updater: User
855
+ useCase: String
856
+ workDate: String
857
+ workShift: String
858
+ }
859
+
860
+ type DataOocList {
861
+ items: [DataOoc!]!
862
+ total: Int!
863
+ }
864
+
865
+ input DataOocPatch {
866
+ correctiveAction: String
867
+ id: ID
868
+ state: DataOocStatus
869
+ }
870
+
871
+ """Out of control data corrective action process progress status"""
872
+ enum DataOocStatus {
873
+ CORRECTED
874
+ CREATED
875
+ REVIEWED
876
+ }
877
+
878
+ """Entity for DataSample"""
879
+ type DataSample {
880
+ collectedAt: Timestamp
881
+ createdAt: Timestamp
882
+ creator: User
883
+ data: Object
884
+ dataItems: [DataItem!]
885
+ dataSet: DataSet!
886
+ dataSetVersion: Float
887
+ description: String
888
+ domain: Domain
889
+ id: ID!
890
+ judgment: Object
891
+ key01: String
892
+ key02: String
893
+ key03: String
894
+ key04: String
895
+ key05: String
896
+ name: String!
897
+ ooc: Boolean
898
+ oos: Boolean
899
+ partitionKeys: Object
900
+ rawData: String
901
+ source: String
902
+ type: String
903
+ updatedAt: Timestamp
904
+ updater: User
905
+ useCase: String
906
+ workDate: String
907
+ workShift: String
908
+ }
909
+
910
+ type DataSampleList {
911
+ items: [DataSample!]!
912
+ total: Int!
913
+ }
914
+
915
+ """Entity for DataSensor"""
916
+ type DataSensor {
917
+ active: Boolean
918
+ appliance: Appliance
919
+ brand: String
920
+ createdAt: Timestamp
921
+ creator: User
922
+ dataSet: DataSet
923
+ description: String
924
+ deviceId: String
925
+ domain: Domain
926
+ id: ID!
927
+ model: String
928
+ name: String!
929
+ netmask: String
930
+ refBy: String
931
+ serialNo: String
932
+ tag: String
933
+ updatedAt: Timestamp
934
+ updater: User
935
+ }
936
+
937
+ type DataSensorList {
938
+ items: [DataSensor!]!
939
+ total: Int!
940
+ }
941
+
942
+ input DataSensorPatch {
943
+ active: Boolean
944
+ appliance: ObjectRef
945
+ brand: String
946
+ cuFlag: String!
947
+ dataSet: ObjectRef
948
+ description: String
949
+ deviceId: String
950
+ id: ID
951
+ model: String
952
+ name: String
953
+ netmask: String
954
+ refBy: String
955
+ serialNo: String
956
+ tag: String
957
+ }
958
+
959
+ """Entity for DataSet"""
960
+ type DataSet {
961
+ active: Boolean
962
+ createdAt: Timestamp
963
+ creator: User
964
+ dataItems: [DataItem!]
965
+ dataKeySet: DataKeySet
966
+ description: String
967
+ domain: Domain
968
+ entryBoard: Board
969
+ entryRole: Role
970
+ entryType: String
971
+ entryView: String
972
+ id: ID!
973
+ latestCollectedAt: Timestamp
974
+ monitorBoard: Board
975
+ monitorType: String
976
+ monitorView: String
977
+ name: String!
978
+ nextSchedule: Timestamp
979
+ partitionKeys: Object
980
+ prevSchedule: Timestamp
981
+ reportTemplate: String
982
+ reportType: String
983
+ reportView: String
984
+ schedule: String
985
+ supervisoryRole: Role
986
+ timezone: String
987
+ type: String
988
+ updatedAt: Timestamp
989
+ updater: User
990
+ useCase: String
991
+ version: Float
992
+ }
993
+
994
+ """Entity for DataSetHistory"""
995
+ type DataSetHistory {
996
+ active: Boolean
997
+ createdAt: Timestamp
998
+ creator: User
999
+ dataItems: [DataItem!]
1000
+ dataKeySet: DataKeySet
1001
+ description: String
1002
+ domain: Domain
1003
+ entryBoard: Board
1004
+ entryRole: Role
1005
+ entryType: String
1006
+ entryView: String
1007
+ id: ID!
1008
+ monitorBoard: Board
1009
+ monitorType: String
1010
+ monitorView: String
1011
+ name: String!
1012
+ partitionKeys: Object
1013
+ reportTemplate: String
1014
+ reportType: String
1015
+ reportView: String
1016
+ schedule: String
1017
+ supervisoryRole: Role
1018
+ timestamp: User!
1019
+ timezone: String
1020
+ type: String
1021
+ updatedAt: Timestamp
1022
+ updater: User
1023
+ useCase: String
1024
+ version: Float
1025
+ }
1026
+
1027
+ type DataSetHistoryList {
1028
+ items: [DataSetHistory!]!
1029
+ total: Int!
1030
+ }
1031
+
1032
+ type DataSetList {
1033
+ items: [DataSet!]!
1034
+ total: Int!
1035
+ }
1036
+
1037
+ input DataSetPatch {
1038
+ active: Boolean
1039
+ cuFlag: String!
1040
+ dataItems: [DataItemPatch!]
1041
+ dataKeySet: ObjectRef
1042
+ description: String
1043
+ entryRole: ObjectRef
1044
+ entryType: String
1045
+ entryView: String
1046
+ id: ID
1047
+ monitorType: String
1048
+ monitorView: String
1049
+ name: String
1050
+ partitionKeys: Object
1051
+ reportTemplate: Upload
1052
+ reportType: String
1053
+ reportView: String
1054
+ schedule: String
1055
+ supervisoryRole: ObjectRef
1056
+ timezone: String
1057
+ type: String
1058
+ useCase: String
1059
+ }
1060
+
1061
+ type DataSpec {
1062
+ description: String
1063
+ help: String
1064
+ name: String!
1065
+ specItems: [DataSpecItem!]
1066
+ }
1067
+
1068
+ type DataSpecItem {
1069
+ label: String!
1070
+ name: String!
1071
+ placeholder: String
1072
+ property: Object
1073
+ type: String!
1074
+ }
1075
+
1076
+ type DataSpecList {
1077
+ items: [DataSpec!]!
1078
+ total: Int!
1079
+ }
1080
+
1081
+ """Date custom scalar type"""
1082
+ scalar Date
1083
+
1084
+ """Entity for Department"""
1085
+ type Department {
1086
+ active: Boolean
1087
+ children: [Department!]!
1088
+ controlNo: String!
1089
+ createdAt: Timestamp
1090
+ creator: User
1091
+ deletedAt: Timestamp
1092
+ description: String
1093
+ domain: Domain
1094
+ extension: String
1095
+ id: ID!
1096
+ manager: Employee
1097
+ members: [Employee!]!
1098
+ name: String
1099
+ parent: Department
1100
+ picture: String
1101
+ state: String
1102
+ updatedAt: Timestamp
1103
+ updater: User
1104
+ version: Float
1105
+ }
1106
+
1107
+ type DepartmentList {
1108
+ items: [Department!]!
1109
+ total: Int!
1110
+ }
1111
+
1112
+ input DepartmentPatch {
1113
+ active: Boolean
1114
+ controlNo: String
1115
+ cuFlag: String
1116
+ description: String
1117
+ id: ID
1118
+ manager: ObjectRefForEmployee
1119
+ name: String
1120
+ parent: ObjectRef
1121
+ picture: Upload
1122
+ state: DepartmentStatus
1123
+ }
1124
+
1125
+ """state enumeration of a department"""
1126
+ enum DepartmentStatus {
1127
+ STATUS_A
1128
+ STATUS_B
1129
+ }
1130
+
1131
+ type Domain {
1132
+ brandImage: String
1133
+ brandName: String
1134
+ contentImage: String
1135
+ createdAt: Timestamp
1136
+ description: String
1137
+ extType: String
1138
+ id: ID!
1139
+ name: String!
1140
+ owner: String
1141
+ ownerUser: User!
1142
+ subdomain: String
1143
+ systemFlag: Boolean
1144
+ theme: String
1145
+ timezone: String
1146
+ updatedAt: Timestamp
1147
+ workShifts: [WorkShift!]!
1148
+ }
1149
+
1150
+ input DomainGeneratorInput {
1151
+ description: String
1152
+ name: String!
1153
+ }
1154
+
1155
+ input DomainInput {
1156
+ description: String
1157
+ name: String!
1158
+ }
1159
+
1160
+ type DomainList {
1161
+ items: [Domain!]
1162
+ total: Int
1163
+ }
1164
+
1165
+ input DomainPatch {
1166
+ brandImage: String
1167
+ brandName: String
1168
+ contentImage: String
1169
+ description: String
1170
+ id: String
1171
+ name: String
1172
+ subdomain: String
1173
+ systemFlag: Boolean
1174
+ theme: String
1175
+ timezone: String
1176
+ }
1177
+
1178
+ input DomainUserRoleInput {
1179
+ domain: DomainInput!
1180
+ roles: [NewRole!]!
1181
+ users: [NewUserByDomainWizardInput!]!
1182
+ }
1183
+
1184
+ """Entity for Employee"""
1185
+ type Employee {
1186
+ active: Boolean
1187
+ address: String!
1188
+ approvalLines: [ApprovalLine!]!
1189
+ contact: Contact
1190
+ controlNo: String!
1191
+ createdAt: Timestamp
1192
+ creator: User
1193
+ deletedAt: Timestamp
1194
+ department: Department
1195
+ domain: Domain
1196
+ email: String
1197
+ extension: String
1198
+ hiredOn: String
1199
+ id: ID!
1200
+ manages: [Department!]!
1201
+ name: String
1202
+ note: String
1203
+ phone: String
1204
+ photo: String
1205
+ profile: Profile
1206
+ supervises: [Employee!]!
1207
+ supervisor: Employee
1208
+ type: String
1209
+ updatedAt: Timestamp
1210
+ updater: User
1211
+ user: User
1212
+ version: Float
1213
+ }
1214
+
1215
+ type EmployeeList {
1216
+ items: [Employee!]!
1217
+ total: Int!
1218
+ }
1219
+
1220
+ input EmployeePatch {
1221
+ active: Boolean
1222
+ controlNo: String
1223
+ cuFlag: String
1224
+ department: ObjectRef
1225
+ hiredOn: String
1226
+ id: ID
1227
+ name: String
1228
+ note: String
1229
+ photo: Upload
1230
+ supervisor: ObjectRefForEmployee
1231
+ type: EmployeeType
1232
+ user: ObjectRefForUser
1233
+ }
1234
+
1235
+ """type enumeration of a employee"""
1236
+ enum EmployeeType {
1237
+ FULLTIME
1238
+ PARTTIME
1239
+ TEMPORARY
1240
+ }
1241
+
1242
+ """Entity for Entity"""
1243
+ type Entity {
1244
+ active: Boolean
1245
+ association: String
1246
+ bundle: String!
1247
+ children: [Entity!]
1248
+ columns: [EntityColumn!]
1249
+ createdAt: Timestamp
1250
+ creator: User
1251
+ dataProp: String
1252
+ delStrategy: String
1253
+ description: String
1254
+ domain: Domain
1255
+ extEntity: Boolean
1256
+ fixedColumns: Float
1257
+ id: ID!
1258
+ idField: String
1259
+ idType: String
1260
+ master: Entity
1261
+ multiSaveUrl: String
1262
+ name: String!
1263
+ refField: String
1264
+ searchUrl: String
1265
+ tableName: String!
1266
+ titleField: String
1267
+ updatedAt: Timestamp
1268
+ updater: User
1269
+ }
1270
+
1271
+ """Entity for EntityColumn"""
1272
+ type EntityColumn {
1273
+ colSize: Float
1274
+ colType: String!
1275
+ createdAt: Timestamp
1276
+ creator: User
1277
+ defVal: String
1278
+ description: String
1279
+ domain: Domain
1280
+ entity: Entity!
1281
+ formEditor: String
1282
+ formFormat: String
1283
+ formValidator: String
1284
+ gridAlign: String
1285
+ gridEditor: String
1286
+ gridFormat: String
1287
+ gridRank: Float
1288
+ gridValidator: String
1289
+ gridWidth: Float
1290
+ id: ID!
1291
+ ignoreOnSav: Boolean
1292
+ name: String!
1293
+ nullable: Boolean
1294
+ rangeVal: String
1295
+ rank: Float
1296
+ refName: String
1297
+ refParams: String
1298
+ refRelated: String
1299
+ refType: String
1300
+ refUrl: String
1301
+ reverseSort: Boolean
1302
+ searchEditor: String
1303
+ searchInitVal: String
1304
+ searchName: String
1305
+ searchOper: String
1306
+ searchRank: Float
1307
+ sortRank: Float
1308
+ term: String
1309
+ uniqRank: Float
1310
+ updatedAt: Timestamp
1311
+ updater: User
1312
+ virtualField: Boolean
1313
+ }
1314
+
1315
+ type EntityColumnList {
1316
+ items: [EntityColumn!]!
1317
+ total: Int!
1318
+ }
1319
+
1320
+ """EntityColumn of Entity"""
1321
+ type EntityColumnMetadata {
1322
+ enum: [Any!]
1323
+ generatedType: String
1324
+ isArray: Boolean
1325
+ isNullable: Boolean!
1326
+ isPrimary: Boolean
1327
+ isReadonly: Boolean
1328
+ isUpdateDate: Boolean
1329
+ isVersion: Boolean
1330
+ length: Float
1331
+ propertyName: String!
1332
+ referenceColumn: Any
1333
+ relationMetadata: EntityRelationMetadata
1334
+ target: Any
1335
+ type: Any!
1336
+ width: Int
1337
+ }
1338
+
1339
+ input EntityColumnPatch {
1340
+ colSize: Int
1341
+ colType: String
1342
+ cuFlag: String
1343
+ defVal: String
1344
+ description: String
1345
+ entity: ObjectRef
1346
+ formEditor: String
1347
+ formFormat: String
1348
+ formValidator: String
1349
+ gridAlign: String
1350
+ gridEditor: String
1351
+ gridFormat: String
1352
+ gridRank: Int
1353
+ gridValidator: String
1354
+ gridWidth: Int
1355
+ id: ID
1356
+ ignoreOnSav: Boolean
1357
+ name: String
1358
+ nullable: Boolean
1359
+ rangeVal: String
1360
+ rank: Int
1361
+ refName: String
1362
+ refParams: String
1363
+ refRelated: String
1364
+ refType: String
1365
+ refUrl: String
1366
+ reverseSort: Boolean
1367
+ searchEditor: String
1368
+ searchInitVal: String
1369
+ searchName: String
1370
+ searchOper: String
1371
+ searchRank: Int
1372
+ sortRank: Float
1373
+ term: String
1374
+ uniqRank: Int
1375
+ virtualField: Boolean
1376
+ }
1377
+
1378
+ type EntityList {
1379
+ items: [Entity!]!
1380
+ total: Int!
1381
+ }
1382
+
1383
+ """Entity for EntityMetadata"""
1384
+ type EntityMetadata {
1385
+ columns: [EntityColumnMetadata!]
1386
+ name: String!
1387
+ }
1388
+
1389
+ input EntityPatch {
1390
+ active: Boolean
1391
+ association: String
1392
+ bundle: String
1393
+ children: [String!]
1394
+ columns: [String!]
1395
+ cuFlag: String
1396
+ dataProp: String
1397
+ delStrategy: String
1398
+ description: String
1399
+ extEntity: Boolean
1400
+ fixedColumns: Int
1401
+ id: ID
1402
+ idField: String
1403
+ idType: String
1404
+ master: String
1405
+ multiSaveUrl: String
1406
+ name: String
1407
+ refField: String
1408
+ searchUrl: String
1409
+ tableName: String
1410
+ titleField: String
1411
+ }
1412
+
1413
+ """RelationType of EntityColumn"""
1414
+ type EntityRelationMetadata {
1415
+ isManyToOne: Boolean
1416
+ isOneToMany: Boolean
1417
+ isOneToOne: Boolean
1418
+ joinColumns: [EntityColumnMetadata!]
1419
+ joinTableName: String
1420
+ relationType: Boolean
1421
+ }
1422
+
1423
+ input Filter {
1424
+ name: String!
1425
+ operator: String!
1426
+ relation: Boolean
1427
+ value: Any
1428
+ }
1429
+
1430
+ """Entity for Font"""
1431
+ type Font {
1432
+ active: Boolean!
1433
+ createdAt: Timestamp
1434
+ creator: User
1435
+ domain: Domain
1436
+ files: [Attachment!]
1437
+ id: ID!
1438
+ name: String!
1439
+ path: String
1440
+ provider: String!
1441
+ updatedAt: Timestamp
1442
+ updater: User
1443
+ uri: String
1444
+ }
1445
+
1446
+ type FontList {
1447
+ items: [Font!]!
1448
+ total: Int!
1449
+ }
1450
+
1451
+ input FontPatch {
1452
+ active: Boolean
1453
+ files: [Upload!]
1454
+ name: String
1455
+ path: String
1456
+ provider: String
1457
+ uri: String
1458
+ }
1459
+
1460
+ type GrantedRole {
1461
+ domain: Domain!
1462
+ id: ID!
1463
+ role: Role!
1464
+ }
1465
+
1466
+ """Entity for Board Management Group"""
1467
+ type Group {
1468
+ boards: [Board!]
1469
+ createdAt: Timestamp
1470
+ creator: User
1471
+ description: String
1472
+ domain: Domain
1473
+ id: ID!
1474
+ name: String!
1475
+ updatedAt: Timestamp
1476
+ updater: User
1477
+ }
1478
+
1479
+ type GroupList {
1480
+ items: [Group!]!
1481
+ total: Int!
1482
+ }
1483
+
1484
+ input GroupPatch {
1485
+ description: String
1486
+ name: String
1487
+ }
1488
+
1489
+ type Invitation {
1490
+ createdAt: Timestamp
1491
+ creator: User
1492
+ email: String!
1493
+ id: ID!
1494
+ reference: String!
1495
+ token: String!
1496
+ type: String!
1497
+ updatedAt: Timestamp
1498
+ updater: User
1499
+ }
1500
+
1501
+ type InvitationList {
1502
+ items: [Invitation!]
1503
+ total: Int
1504
+ }
1505
+
1506
+ """Entity for LiteMenu"""
1507
+ type LiteMenu {
1508
+ active: Boolean
1509
+ appName: String
1510
+ board: Board
1511
+ createdAt: Timestamp
1512
+ creator: User
1513
+ description: String
1514
+ domain: Domain
1515
+ icon: String
1516
+ id: ID!
1517
+ name: String!
1518
+ parent: String
1519
+ rank: Int
1520
+ type: String
1521
+ updatedAt: Timestamp
1522
+ updater: User
1523
+ value: String
1524
+ }
1525
+
1526
+ type LiteMenuList {
1527
+ items: [LiteMenu!]!
1528
+ total: Int!
1529
+ }
1530
+
1531
+ input LiteMenuPatch {
1532
+ active: Boolean
1533
+ appName: String
1534
+ description: String
1535
+ icon: String
1536
+ name: String
1537
+ parent: String
1538
+ rank: Int
1539
+ type: String
1540
+ value: String
1541
+ }
1542
+
1543
+ type Log {
1544
+ """log level (error, warning, info, ..)"""
1545
+ level: String!
1546
+ """log body message"""
1547
+ message: String!
1548
+ """the source of the log"""
1549
+ source: Object!
1550
+ """timestamp the log occurred"""
1551
+ timestamp: String!
1552
+ }
1553
+
1554
+ type LoginHistory {
1555
+ accessDomain: Domain!
1556
+ accessUser: User!
1557
+ accessedAt: Timestamp
1558
+ accessorIp: String
1559
+ id: ID!
1560
+ }
1561
+
1562
+ """Entity for Menu"""
1563
+ type Menu {
1564
+ buttons: [MenuButton!]!
1565
+ category: String
1566
+ children: [Menu!]!
1567
+ columns: [MenuColumn!]!
1568
+ createdAt: Timestamp
1569
+ creator: User
1570
+ description: String
1571
+ detailFormId: String
1572
+ detailLayout: String
1573
+ domain: Domain
1574
+ fixedColumns: Float
1575
+ gridSaveUrl: String
1576
+ hiddenFlag: Boolean
1577
+ iconPath: String
1578
+ id: ID!
1579
+ idField: String
1580
+ itemsProp: String
1581
+ menuType: String
1582
+ name: String
1583
+ pagination: Boolean
1584
+ parent: Menu
1585
+ rank: Float
1586
+ resourceId: String
1587
+ resourceName: String
1588
+ resourceType: String
1589
+ resourceUrl: String
1590
+ role: Role
1591
+ roles: [Role!]
1592
+ routing: String
1593
+ routingType: String
1594
+ template: String
1595
+ titleField: String
1596
+ totalProp: String
1597
+ updatedAt: Timestamp
1598
+ updater: User
1599
+ }
1600
+
1601
+ """Entity for MenuButton"""
1602
+ type MenuButton {
1603
+ auth: String
1604
+ createdAt: Timestamp
1605
+ creator: User
1606
+ domain: Domain
1607
+ icon: String
1608
+ id: ID!
1609
+ logic: String
1610
+ menu: Menu
1611
+ rank: Float
1612
+ style: String
1613
+ text: String
1614
+ updatedAt: Timestamp
1615
+ updater: User
1616
+ }
1617
+
1618
+ type MenuButtonList {
1619
+ items: [MenuButton!]!
1620
+ total: Int!
1621
+ }
1622
+
1623
+ input MenuButtonPatch {
1624
+ auth: String
1625
+ icon: String
1626
+ logic: String
1627
+ menu: String
1628
+ rank: Int
1629
+ style: String
1630
+ text: String
1631
+ }
1632
+
1633
+ """Entity for MenuColumn"""
1634
+ type MenuColumn {
1635
+ colSize: Float
1636
+ colType: String
1637
+ createdAt: Timestamp
1638
+ creator: User
1639
+ defVal: String
1640
+ description: String
1641
+ domain: Domain
1642
+ extField: Boolean
1643
+ formEditor: String
1644
+ formFormat: String
1645
+ formValidator: String
1646
+ gridAlign: String
1647
+ gridEditor: String
1648
+ gridFormat: String
1649
+ gridRank: Float
1650
+ gridValidator: String
1651
+ gridWidth: Float
1652
+ id: ID!
1653
+ ignoreOnSave: Boolean
1654
+ menu: Menu
1655
+ name: String!
1656
+ nullable: Boolean
1657
+ rangeVal: String
1658
+ rank: Float
1659
+ refName: String
1660
+ refParams: String
1661
+ refRelated: String
1662
+ refType: String
1663
+ refUrl: String
1664
+ reverseSort: Boolean
1665
+ searchEditor: String
1666
+ searchInitVal: String
1667
+ searchName: String
1668
+ searchOper: String
1669
+ searchRank: Float
1670
+ sortRank: Float
1671
+ term: String
1672
+ uniqRank: Float
1673
+ updatedAt: Timestamp
1674
+ updater: User
1675
+ virtualField: Boolean
1676
+ }
1677
+
1678
+ type MenuColumnList {
1679
+ items: [MenuColumn!]!
1680
+ total: Int!
1681
+ }
1682
+
1683
+ input MenuColumnPatch {
1684
+ colSize: Int
1685
+ colType: String
1686
+ defVal: String
1687
+ description: String
1688
+ extField: Boolean
1689
+ formEditor: String
1690
+ formFormat: String
1691
+ formValidator: String
1692
+ gridAlign: String
1693
+ gridEditor: String
1694
+ gridFormat: String
1695
+ gridRank: Int
1696
+ gridValidator: String
1697
+ gridWidth: Int
1698
+ ignoreOnSave: Boolean
1699
+ menu: String
1700
+ name: String
1701
+ nullable: Boolean
1702
+ rangeVal: String
1703
+ rank: Int
1704
+ refName: String
1705
+ refParams: String
1706
+ refRelated: String
1707
+ refType: String
1708
+ refUrl: String
1709
+ reverseSort: Boolean
1710
+ searchEditor: String
1711
+ searchInitVal: String
1712
+ searchName: String
1713
+ searchOper: String
1714
+ searchRank: Int
1715
+ sortRank: Int
1716
+ term: String
1717
+ uniqRank: Int
1718
+ virtualField: Boolean
1719
+ }
1720
+
1721
+ """Entity for MenuDetail"""
1722
+ type MenuDetail {
1723
+ association: String
1724
+ buttons: [MenuDetailButton!]
1725
+ columns: [MenuDetailColumn!]
1726
+ createdAt: Timestamp
1727
+ creator: User
1728
+ customView: String
1729
+ dataProp: String
1730
+ domain: Domain
1731
+ entityId: String
1732
+ id: ID!
1733
+ masterField: String
1734
+ menu: Menu
1735
+ name: String!
1736
+ saveUrl: String
1737
+ searchUrl: String
1738
+ updatedAt: Timestamp
1739
+ updater: User
1740
+ viewSection: String
1741
+ }
1742
+
1743
+ """Entity for MenuDetailButton"""
1744
+ type MenuDetailButton {
1745
+ createdAt: Timestamp
1746
+ creator: User
1747
+ domain: Domain
1748
+ icon: String
1749
+ id: ID!
1750
+ logic: String
1751
+ menuDetail: MenuDetail
1752
+ rank: Float
1753
+ style: String
1754
+ text: String
1755
+ updatedAt: Timestamp
1756
+ updater: User
1757
+ }
1758
+
1759
+ type MenuDetailButtonList {
1760
+ items: [MenuDetailButton!]!
1761
+ total: Int!
1762
+ }
1763
+
1764
+ input MenuDetailButtonPatch {
1765
+ icon: String
1766
+ logic: String
1767
+ menuDetail: String
1768
+ rank: Int
1769
+ style: String
1770
+ text: String
1771
+ }
1772
+
1773
+ """Entity for MenuDetailColumn"""
1774
+ type MenuDetailColumn {
1775
+ colSize: Float
1776
+ colType: String
1777
+ createdAt: Timestamp
1778
+ creator: User
1779
+ defVal: String
1780
+ description: String
1781
+ domain: Domain
1782
+ extField: Boolean
1783
+ formEditor: String
1784
+ formFormat: String
1785
+ formValidator: String
1786
+ gridAlign: String
1787
+ gridEditor: String
1788
+ gridFormat: String
1789
+ gridRank: Float
1790
+ gridValidator: String
1791
+ gridWidth: Float
1792
+ id: ID!
1793
+ ignoreOnSave: Boolean
1794
+ menuDetail: MenuDetail
1795
+ name: String
1796
+ nullable: Boolean
1797
+ rangeVal: String
1798
+ rank: Float
1799
+ refName: String
1800
+ refParams: String
1801
+ refRelated: String
1802
+ refType: String
1803
+ refUrl: String
1804
+ reverseSort: Boolean
1805
+ searchEditor: String
1806
+ searchInitVal: String
1807
+ searchName: String
1808
+ searchOper: String
1809
+ searchRank: Float
1810
+ sortRank: Float
1811
+ term: String
1812
+ uniqRank: Float
1813
+ updatedAt: Timestamp
1814
+ updater: User
1815
+ virtualField: Boolean
1816
+ }
1817
+
1818
+ type MenuDetailColumnList {
1819
+ items: [MenuDetailColumn!]!
1820
+ total: Int!
1821
+ }
1822
+
1823
+ input MenuDetailColumnPatch {
1824
+ colSize: Int
1825
+ colType: String!
1826
+ defVal: String
1827
+ description: String
1828
+ extField: Boolean
1829
+ formEditor: String
1830
+ formFormat: String
1831
+ formValidator: String
1832
+ gridAlign: String
1833
+ gridEditor: String
1834
+ gridFormat: String
1835
+ gridRank: Int
1836
+ gridValidator: String
1837
+ gridWidth: Int
1838
+ ignoreOnSave: Boolean
1839
+ menuDetail: String!
1840
+ name: String!
1841
+ nullable: Boolean
1842
+ rangeVal: String
1843
+ rank: Int
1844
+ refName: String
1845
+ refParams: String
1846
+ refRelated: String
1847
+ refType: String
1848
+ refUrl: String
1849
+ reverseSort: Boolean
1850
+ searchEditor: String
1851
+ searchInitVal: String
1852
+ searchName: String
1853
+ searchOper: String
1854
+ searchRank: Int
1855
+ sortRank: Int
1856
+ term: String
1857
+ uniqRank: Int
1858
+ virtualField: Boolean
1859
+ }
1860
+
1861
+ type MenuDetailList {
1862
+ items: [MenuDetail!]!
1863
+ total: Int!
1864
+ }
1865
+
1866
+ input MenuDetailPatch {
1867
+ association: String
1868
+ buttons: [String!]
1869
+ columns: [String!]
1870
+ customView: String
1871
+ dataProp: String
1872
+ entityId: String
1873
+ masterField: String
1874
+ menu: String
1875
+ name: String
1876
+ saveUrl: String
1877
+ searchUrl: String
1878
+ viewSection: String
1879
+ }
1880
+
1881
+ type MenuList {
1882
+ items: [Menu!]!
1883
+ total: Int!
1884
+ }
1885
+
1886
+ input MenuPatch {
1887
+ buttons: [ObjectRef!]
1888
+ category: String
1889
+ children: [ObjectRef!]
1890
+ columns: [ObjectRef!]
1891
+ cuFlag: String
1892
+ description: String
1893
+ detailFormId: String
1894
+ detailLayout: String
1895
+ fixedColumns: Int
1896
+ gridSaveUrl: String
1897
+ hiddenFlag: Boolean
1898
+ iconPath: String
1899
+ id: ID
1900
+ idField: String
1901
+ itemsProp: String
1902
+ menuType: String
1903
+ name: String
1904
+ pagination: Boolean
1905
+ parent: ObjectRef
1906
+ rank: Int
1907
+ resourceId: String
1908
+ resourceName: String
1909
+ resourceType: String
1910
+ resourceUrl: String
1911
+ role: ObjectRef
1912
+ routing: String
1913
+ routingType: String
1914
+ template: String
1915
+ titleField: String
1916
+ totalProp: String
1917
+ }
1918
+
1919
+ type Mutation {
1920
+ """To abort a ActivityInstance"""
1921
+ abortActivityInstance(id: String!, reason: String): ActivityInstance! @transaction
1922
+ """To abort a ActivityThread"""
1923
+ abortActivityThread(id: String!, reason: String): ActivityThread! @transaction
1924
+ """To activate user"""
1925
+ activateUser(userId: String!): Boolean! @privilege(category: "user", privilege: "mutation", domainOwnerGranted: true) @transaction
1926
+ """To approve ActivityApproval"""
1927
+ approveActivityApproval(comment: String, id: String!): ActivityApproval @transaction
1928
+ """To assign a ActivityInstance"""
1929
+ assignActivityInstance(
1930
+ """Email of assignee users"""
1931
+ assignees: [String!]
1932
+ dueAt: Timestamp
1933
+ id: String!
1934
+ reason: String
1935
+ ): ActivityInstance! @transaction
1936
+ """To attach a contact on Employee"""
1937
+ attachContact(contactId: String!, id: String!): Employee! @transaction
1938
+ cancelInvitation(email: String!, reference: String!, type: String!): Boolean!
1939
+ """To connect a connection"""
1940
+ connectConnection(name: String!): Connection!
1941
+ """To copy multiple data-archives"""
1942
+ copyDataArchives(ids: [String!]!): [DataArchive!]! @privilege(category: "data-archive", privilege: "mutation", domainOwnerGranted: true) @transaction
1943
+ """To copy multiple data-sets"""
1944
+ copyDataSets(ids: [String!]!): [DataSet!]! @privilege(category: "data-set", privilege: "mutation", domainOwnerGranted: true) @transaction
1945
+ """To import multiple scenarios"""
1946
+ copyScenarios(ids: [String!]!): [Scenario!]! @transaction
1947
+ """To create new Activity"""
1948
+ createActivity(activity: NewActivity!): Activity! @transaction
1949
+ """To create new ActivityTemplate"""
1950
+ createActivityTemplate(activityTemplate: NewActivityTemplate!): ActivityTemplate! @transaction
1951
+ """To create new appliance"""
1952
+ createAppliance(appliance: NewAppliance!): Appliance!
1953
+ """To create new application"""
1954
+ createApplication(application: NewApplication!): Application!
1955
+ """To create new ApprovalLine"""
1956
+ createApprovalLine(approvalLine: NewApprovalLine!): ApprovalLine! @transaction @privilege(category: "organization", privilege: "mutation", domainOwnerGranted: true)
1957
+ createAttachment(attachment: NewAttachment!): Attachment! @transaction
1958
+ createAttachments(attachments: [NewAttachment!]!): [Attachment!]! @transaction
1959
+ """To create new Board"""
1960
+ createBoard(board: NewBoard!): Board! @transaction
1961
+ """To create new CommonCode"""
1962
+ createCommonCode(commonCode: NewCommonCode!): CommonCode! @transaction
1963
+ """To create new CommonCodeDetail"""
1964
+ createCommonCodeDetail(commonCodeDetail: NewCommonCodeDetail!): CommonCodeDetail! @transaction
1965
+ """To create new connection"""
1966
+ createConnection(connection: NewConnection!): Connection! @transaction
1967
+ """To create new Contact"""
1968
+ createContact(contact: NewContact!): Contact! @transaction
1969
+ """To create new DataArchive"""
1970
+ createDataArchive(dataArchive: NewDataArchive!): DataArchive! @privilege(category: "data-archive", privilege: "mutation", domainOwnerGranted: true) @transaction
1971
+ """To create new DataKeySet"""
1972
+ createDataKeySet(dataKeySet: NewDataKeySet!): DataKeySet! @transaction
1973
+ """To create new DataOoc"""
1974
+ createDataOoc(dataOoc: NewDataOoc!): DataOoc! @privilege(category: "data-ooc", privilege: "mutation", domainOwnerGranted: true) @transaction
1975
+ """To create new data sample"""
1976
+ createDataSample(dataSample: NewDataSample!): DataSample! @privilege(category: "data-sample", privilege: "mutation", domainOwnerGranted: true) @transaction
1977
+ """To create new DataSensor"""
1978
+ createDataSensor(dataSensor: NewDataSensor!): DataSensor! @transaction
1979
+ """To create new DataSet"""
1980
+ createDataSet(dataSet: NewDataSet!): DataSet! @privilege(category: "data-set", privilege: "mutation", domainOwnerGranted: true) @transaction
1981
+ """To create new Department"""
1982
+ createDepartment(department: NewDepartment!): Department! @transaction
1983
+ """To create domain (Only superuser is granted this privilege.)"""
1984
+ createDomain(domainInput: DomainPatch!): Domain! @transaction @privilege(superUserGranted: true)
1985
+ """To create new Employee"""
1986
+ createEmployee(employee: NewEmployee!): Employee! @transaction
1987
+ """To create new Entity"""
1988
+ createEntity(entity: NewEntity!): Entity! @transaction
1989
+ """To create new EntityColumn"""
1990
+ createEntityColumn(entityColumn: NewEntityColumn!): EntityColumn! @transaction
1991
+ """To create new Font"""
1992
+ createFont(font: NewFont!): Font!
1993
+ """To create new Group"""
1994
+ createGroup(group: NewGroup!): Group @transaction
1995
+ """To create new LiteMenu"""
1996
+ createLiteMenu(liteMenu: NewLiteMenu!): LiteMenu!
1997
+ """To create new Menu"""
1998
+ createMenu(menu: NewMenu!): Menu! @transaction
1999
+ """To create new MenuButton"""
2000
+ createMenuButton(menuButton: NewMenuButton!): MenuButton! @transaction
2001
+ """To create new MenuColumn"""
2002
+ createMenuColumn(menuColumn: NewMenuColumn!): MenuColumn! @transaction
2003
+ """To create new MenuDetail"""
2004
+ createMenuDetail(menuDetail: NewMenuDetail!): MenuDetail! @transaction
2005
+ """To create new MenuDetailButton"""
2006
+ createMenuDetailButton(menuDetailButton: NewMenuDetailButton!): MenuDetailButton! @transaction
2007
+ """To create new MenuDetailColumn"""
2008
+ createMenuDetailColumn(menuDetailColumn: NewMenuDetailColumn!): MenuDetailColumn! @transaction
2009
+ """To create new ApprovalLine for current user"""
2010
+ createMyApprovalLine(approvalLine: NewApprovalLine!): ApprovalLine! @transaction
2011
+ """To create new Oauth2Client"""
2012
+ createOauth2Client(oauth2Client: NewOauth2Client!): Oauth2Client! @transaction
2013
+ """To create new PayloadLog"""
2014
+ createPayloadLog(payloadLog: NewPayloadLog!): PayloadLog! @transaction
2015
+ """To create new PlayGroup"""
2016
+ createPlayGroup(playGroup: NewPlayGroup!): PlayGroup! @transaction
2017
+ """To create new privilege"""
2018
+ createPrivilege(privilege: NewPrivilege!): Privilege!
2019
+ """To create new user"""
2020
+ createRole(role: NewRole!): User! @privilege(category: "user", privilege: "mutation", domainOwnerGranted: true)
2021
+ """To create new scenario"""
2022
+ createScenario(scenario: NewScenario!): Scenario! @transaction
2023
+ """To create new Setting"""
2024
+ createSetting(setting: NewSetting!): Setting! @transaction @privilege(category: "setting", privilege: "mutation")
2025
+ """To create new Terminology"""
2026
+ createTerminology(terminology: NewTerminology!): Terminology! @transaction
2027
+ """To create new user"""
2028
+ createUser(user: NewUser!): User! @privilege(category: "user", privilege: "mutation", domainOwnerGranted: true) @transaction
2029
+ """To delegate ActivityApproval"""
2030
+ delegateActivityApproval(comment: String, id: String!, to: ObjectRef!): ActivityApproval @transaction
2031
+ """To delegate a ActivityInstance"""
2032
+ delegateActivityInstance(assigneeRole: ObjectRef, dueAt: Timestamp, id: String!, reason: String): ActivityInstance! @transaction
2033
+ """To delegate a ActivityThread"""
2034
+ delegateActivityThread(assigneeRole: ObjectRef, dueAt: Timestamp, id: String!, reason: String): ActivityThread! @transaction
2035
+ """To delete multiple Activities"""
2036
+ deleteActivities(ids: [String!]!): Boolean! @transaction
2037
+ """To delete Activity"""
2038
+ deleteActivity(id: String!): Boolean! @transaction
2039
+ """To delete ActivityTemplate"""
2040
+ deleteActivityTemplate(id: String!): Boolean! @transaction
2041
+ """To delete multiple ActivityTemplates"""
2042
+ deleteActivityTemplates(ids: [String!]!): Boolean! @transaction
2043
+ deleteAppBinding(id: String!): Boolean!
2044
+ """To delete appliance"""
2045
+ deleteAppliance(id: String!): Boolean!
2046
+ """To delete application"""
2047
+ deleteApplication(id: String!): Boolean!
2048
+ """To delete ApprovalLine"""
2049
+ deleteApprovalLine(id: String!): Boolean! @transaction @privilege(category: "organization", privilege: "mutation", domainOwnerGranted: true)
2050
+ """To delete multiple ApprovalLines"""
2051
+ deleteApprovalLines(ids: [String!]!): Boolean! @transaction @privilege(category: "organization", privilege: "mutation", domainOwnerGranted: true)
2052
+ deleteAttachment(id: String!): Boolean! @transaction
2053
+ deleteAttachmentsByRef(refBys: [String!]!): Boolean! @transaction
2054
+ """To delete Board"""
2055
+ deleteBoard(id: String!): Boolean! @transaction
2056
+ """To delete CommonCode"""
2057
+ deleteCommonCode(id: String!): Boolean! @transaction
2058
+ """To delete CommonCodeDetail"""
2059
+ deleteCommonCodeDetail(id: String!): Boolean! @transaction
2060
+ """To delete multiple CommonCodeDetails"""
2061
+ deleteCommonCodeDetails(ids: [String!]!): Boolean! @transaction
2062
+ """To delete multiple CommonCodes"""
2063
+ deleteCommonCodes(ids: [String!]!): Boolean! @transaction
2064
+ """To delete connection"""
2065
+ deleteConnection(name: String!): Boolean! @transaction
2066
+ """To delete multiple connections"""
2067
+ deleteConnections(names: [String!]!): Boolean! @transaction
2068
+ """To delete Contact"""
2069
+ deleteContact(id: String!): Boolean! @transaction
2070
+ """To delete multiple Contacts"""
2071
+ deleteContacts(ids: [String!]!): Boolean! @transaction
2072
+ """To delete DataArchive"""
2073
+ deleteDataArchive(id: String!): Boolean! @privilege(category: "data-archive", privilege: "mutation", domainOwnerGranted: true) @transaction
2074
+ """To delete multiple dataArchives"""
2075
+ deleteDataArchives(ids: [String!]!): Boolean! @privilege(category: "data-archive", privilege: "mutation", domainOwnerGranted: true) @transaction
2076
+ """To delete DataKeySet"""
2077
+ deleteDataKeySet(id: String!): Boolean! @transaction
2078
+ """To delete multiple DataKeySets"""
2079
+ deleteDataKeySets(ids: [String!]!): Boolean! @transaction
2080
+ """To delete DataSensor"""
2081
+ deleteDataSensor(id: String!): Boolean! @transaction
2082
+ """To delete multiple dataSensors"""
2083
+ deleteDataSensors(ids: [String!]!): Boolean! @transaction
2084
+ """To delete DataSet"""
2085
+ deleteDataSet(id: String!): Boolean! @privilege(category: "data-set", privilege: "mutation", domainOwnerGranted: true) @transaction
2086
+ """To delete multiple dataSets"""
2087
+ deleteDataSets(ids: [String!]!): Boolean! @privilege(category: "data-set", privilege: "mutation", domainOwnerGranted: true) @transaction
2088
+ """To delete Department"""
2089
+ deleteDepartment(id: String!): Boolean! @transaction
2090
+ """To delete multiple Departments"""
2091
+ deleteDepartments(ids: [String!]!): Boolean! @transaction
2092
+ """To delete domain (Only superuser is granted this privilege.)"""
2093
+ deleteDomain(name: String!): Domain! @transaction @privilege(superUserGranted: true)
2094
+ """To delete domain user"""
2095
+ deleteDomainUser(email: String!): Boolean! @transaction @privilege(category: "user", privilege: "mutation", domainOwnerGranted: true)
2096
+ """To delete multiple domains (Only superuser is granted this privilege.)"""
2097
+ deleteDomains(names: [String!]!): Boolean! @transaction @privilege(superUserGranted: true)
2098
+ """To delete Employee"""
2099
+ deleteEmployee(id: String!): Boolean! @transaction
2100
+ """To delete multiple Employees"""
2101
+ deleteEmployees(ids: [String!]!): Boolean! @transaction
2102
+ """To delete multiple Entities"""
2103
+ deleteEntities(ids: [String!]!): Boolean! @transaction
2104
+ """To delete Entity"""
2105
+ deleteEntity(id: String!): Boolean! @transaction
2106
+ """To delete EntityColumn"""
2107
+ deleteEntityColumn(id: String!): Boolean! @transaction
2108
+ """To delete multiple EntityColumns"""
2109
+ deleteEntityColumns(ids: [String!]!): Boolean! @transaction
2110
+ """To delete Font"""
2111
+ deleteFont(id: String!): Boolean!
2112
+ """To delete Group"""
2113
+ deleteGroup(id: String!): Boolean! @transaction
2114
+ """To delete LiteMenu"""
2115
+ deleteLiteMenu(id: String!): Boolean!
2116
+ """To delete Menu"""
2117
+ deleteMenu(id: String!): Boolean! @transaction
2118
+ """To delete MenuButton"""
2119
+ deleteMenuButton(id: String!): Boolean! @transaction
2120
+ """To delete multiple MenuButtons"""
2121
+ deleteMenuButtons(ids: [String!]!): Boolean! @transaction
2122
+ """To delete MenuColumn"""
2123
+ deleteMenuColumn(id: String!): Boolean! @transaction
2124
+ """To delete multiple MenuColumns"""
2125
+ deleteMenuColumns(ids: [String!]!): Boolean! @transaction
2126
+ """To delete MenuDetail"""
2127
+ deleteMenuDetail(id: String!): Boolean! @transaction
2128
+ """To delete MenuDetailButton"""
2129
+ deleteMenuDetailButton(id: String!): Boolean! @transaction
2130
+ """To delete multiple MenuDetailButtons"""
2131
+ deleteMenuDetailButtons(ids: [String!]!): Boolean! @transaction
2132
+ """To delete MenuDetailColumn"""
2133
+ deleteMenuDetailColumn(id: String!): Boolean! @transaction
2134
+ """To delete multiple MenuDetailColumns"""
2135
+ deleteMenuDetailColumns(ids: [String!]!): Boolean! @transaction
2136
+ """To delete multiple MenuDetails"""
2137
+ deleteMenuDetails(ids: [String!]!): Boolean! @transaction
2138
+ """To delete multiple Menus"""
2139
+ deleteMenus(ids: [String!]!): Boolean! @transaction
2140
+ """To delete ApprovalLine for current user"""
2141
+ deleteMyApprovalLine(id: String!): Boolean! @transaction
2142
+ """To delete multiple ApprovalLines for current user"""
2143
+ deleteMyApprovalLines(ids: [String!]!): Boolean! @transaction
2144
+ """To delete Oauth2Client"""
2145
+ deleteOauth2Client(id: String!): Boolean! @transaction
2146
+ """To delete multiple Oauth2Clients"""
2147
+ deleteOauth2Clients(ids: [String!]!): Boolean! @transaction
2148
+ """To delete multiple partnerSettings"""
2149
+ deletePartnerSettings(ids: [String!]!): Boolean! @transaction
2150
+ """To delete PayloadLog"""
2151
+ deletePayloadLog(id: String!): Boolean! @transaction
2152
+ """To delete multiple payloadLogs"""
2153
+ deletePayloadLogs(ids: [String!]!): Boolean! @transaction
2154
+ """To delete PlayGroup"""
2155
+ deletePlayGroup(id: String!): Boolean! @transaction
2156
+ """To delete privilege"""
2157
+ deletePrivilege(category: String!, name: String!): Boolean!
2158
+ """To delete role"""
2159
+ deleteRole(id: String!): Boolean! @privilege(category: "user", privilege: "mutation") @transaction
2160
+ """To delete multiple roles"""
2161
+ deleteRoles(ids: [String!]!): Boolean! @privilege(category: "user", privilege: "mutation", domainOwnerGranted: true)
2162
+ """To delete scenario"""
2163
+ deleteScenario(name: String!): Boolean! @transaction
2164
+ """To delete multiple scenarios"""
2165
+ deleteScenarios(ids: [String!]!): Boolean! @transaction
2166
+ """To delete Setting"""
2167
+ deleteSetting(name: String!): Boolean! @transaction @privilege(category: "setting", privilege: "mutation")
2168
+ """To delete multiple settings"""
2169
+ deleteSettings(names: [String!]!): Boolean! @transaction @privilege(category: "setting", privilege: "mutation")
2170
+ """To delete multiple steps"""
2171
+ deleteSteps(ids: [String!]!): Boolean! @transaction
2172
+ """To delete multiple Terminologies"""
2173
+ deleteTerminologies(ids: [String!]!): Boolean! @transaction
2174
+ """To delete Terminology"""
2175
+ deleteTerminology(id: String!): Boolean! @transaction
2176
+ """To delete a user"""
2177
+ deleteUser(email: String!): Boolean! @privilege(category: "user", privilege: "mutation", domainOwnerGranted: true) @transaction
2178
+ """To delete some users"""
2179
+ deleteUsers(emails: [String!]!): Boolean! @privilege(category: "user", privilege: "mutation", domainOwnerGranted: true) @transaction
2180
+ """To delete multiple workShifts"""
2181
+ deleteWorkShifts(ids: [String!]!): Boolean! @privilege(category: "system", privilege: "mutation", domainOwnerGranted: true) @transaction
2182
+ """To detach a contact from Employee"""
2183
+ detachContact(id: String!): Employee! @transaction
2184
+ """To disconnect a connection"""
2185
+ disconnectConnection(name: String!): Connection!
2186
+ domainRegister(domainInput: DomainGeneratorInput!): Domain! @privilege(category: "system", privilege: "mutation", superUserGranted: true) @transaction
2187
+ domainUserRoleRegister(newDomainInfo: DomainUserRoleInput!): Domain! @transaction
2188
+ """To draft standard ActivityInstance"""
2189
+ draftActivityInstance(activityInstance: NewActivityInstance!): ActivityInstance! @transaction
2190
+ """To end a ActivityInstance"""
2191
+ endActivityInstance(id: String!, output: Object, reason: String): ActivityInstance! @transaction
2192
+ """To end a ActivityThread"""
2193
+ endActivityThread(id: String!, output: Object, reason: String): ActivityThread! @transaction
2194
+ generateApplianceSecret(id: String!): Appliance!
2195
+ generateApplicationSecret(id: String!): Application!
2196
+ """To create new DataArchive"""
2197
+ generatePresignedUrl(patch: DataArchivePatch!): DataArchive! @privilege(category: "data-archive", privilege: "mutation", domainOwnerGranted: true) @transaction
2198
+ generateUploadURL(type: String!): UploadURL!
2199
+ """To get oauth2 auth URL"""
2200
+ getOauth2AuthUrl(id: String!): String! @transaction
2201
+ grantRoles(customerId: String!, roles: [RolePatch!]!): Boolean! @privilege(category: "partner", privilege: "mutation") @transaction
2202
+ """To import multiple Activities"""
2203
+ importActivities(activities: [ActivityPatch!]!): Boolean! @transaction
2204
+ """To import multiple ActivityTemplates"""
2205
+ importActivityTemplates(activityTemplates: [ActivityTemplatePatch!]!): Boolean! @transaction
2206
+ """To import multiple ApprovalLines"""
2207
+ importApprovalLines(approvalLines: [ApprovalLinePatch!]!): Boolean! @transaction @privilege(category: "organization", privilege: "mutation", domainOwnerGranted: true)
2208
+ """To import multiple CommonCodeDetails"""
2209
+ importCommonCodeDetails(commonCodeDetails: [CommonCodeDetailPatch!]!): Boolean! @transaction
2210
+ """To import multiple CommonCodes"""
2211
+ importCommonCodes(commonCodes: [CommonCodePatch!]!): Boolean! @transaction
2212
+ """To import multiple Contacts"""
2213
+ importContacts(contacts: [ContactPatch!]!): Boolean! @transaction
2214
+ """To import multiple data-archives"""
2215
+ importDataArchives(dataArchives: [DataArchivePatch!]!): Boolean! @privilege(category: "data-archive", privilege: "mutation", domainOwnerGranted: true) @transaction
2216
+ """To import multiple DataKeySets"""
2217
+ importDataKeySets(dataKeySets: [DataKeySetPatch!]!): Boolean! @transaction
2218
+ """To import multiple data-sets"""
2219
+ importDataSets(dataSets: [DataSetPatch!]!): Boolean! @privilege(category: "data-set", privilege: "mutation", domainOwnerGranted: true) @transaction
2220
+ """To import multiple Departments"""
2221
+ importDepartments(departments: [DepartmentPatch!]!): Boolean! @transaction
2222
+ """To import multiple Employees"""
2223
+ importEmployees(employees: [EmployeePatch!]!): Boolean! @transaction
2224
+ """To import multiple MenuButtons"""
2225
+ importMenuButtons(menuButtons: [MenuButtonPatch!]!): Boolean! @transaction
2226
+ """To import multiple MenuColumns"""
2227
+ importMenuColumns(menuColumns: [MenuColumnPatch!]!): Boolean! @transaction
2228
+ """To import multiple MenuDetailButtons"""
2229
+ importMenuDetailButtons(menuDetailButtons: [MenuDetailButtonPatch!]!): Boolean! @transaction
2230
+ """To import multiple MenuDetailColumns"""
2231
+ importMenuDetailColumns(menuDetailColumns: [MenuDetailColumnPatch!]!): Boolean! @transaction
2232
+ """To import multiple MenuDetails"""
2233
+ importMenuDetails(menuDetails: [MenuDetailPatch!]!): Boolean! @transaction
2234
+ """To import multiple Menus"""
2235
+ importMenus(menus: [MenuPatch!]!): Boolean! @transaction
2236
+ """To import multiple Oauth2Clients"""
2237
+ importOauth2Clients(oauth2Clients: [Oauth2ClientPatch!]!): Boolean! @transaction
2238
+ """To import multiple scenarios"""
2239
+ importScenarios(scenarios: [ScenarioPatch!]!): Boolean! @transaction
2240
+ """To import multiple Terminologies"""
2241
+ importTerminologies(terminologies: [TerminologyPatch!]!): Boolean! @transaction
2242
+ """To inactivate user"""
2243
+ inactivateUser(userId: String!): Boolean! @privilege(category: "user", privilege: "mutation", domainOwnerGranted: true) @transaction
2244
+ inviteCustomer(customerDomainName: String!): Boolean! @privilege(category: "partner", privilege: "mutation")
2245
+ """To invite new user"""
2246
+ inviteUser(email: String!): Boolean! @transaction
2247
+ """To make the board to join the group"""
2248
+ joinGroup(boardIds: [String!]!, id: String!): Group! @transaction
2249
+ """To make the board to join the play group"""
2250
+ joinPlayGroup(boardIds: [String!]!, id: String!): PlayGroup! @transaction
2251
+ """To make the board to leave from the play group"""
2252
+ leavePlayGroup(boardIds: [String!]!, id: String!): PlayGroup! @transaction
2253
+ multipleUpload(files: [Upload!]!): [Attachment!]! @transaction
2254
+ """
2255
+ To pick an activity ActivityInstance voluntarily. [cautions] This resolver will return a assigned ActivityThread.
2256
+ """
2257
+ pickActivityInstance(id: String!): ActivityThread @transaction
2258
+ """To post standard ActivityInstance"""
2259
+ postActivityInstance(activityInstance: ActivityInstancePost!): ActivityInstance! @transaction
2260
+ """To refresh oauth2 access token"""
2261
+ refreshOauth2AccessToken(id: String!): Oauth2Client! @transaction
2262
+ """To reject ActivityApproval"""
2263
+ rejectActivityApproval(comment: String, id: String!): ActivityApproval @transaction
2264
+ renewApplicationAccessToken(id: String!, scope: String!): AccessToken!
2265
+ """To reset password to default"""
2266
+ resetPasswordToDefault(userId: String!): Boolean! @privilege(category: "user", privilege: "mutation", domainOwnerGranted: true) @transaction
2267
+ """To restart ActivityThread"""
2268
+ restartActivityThread(id: String!, output: Object, reason: String): ActivityThread @transaction
2269
+ """
2270
+ To run new scenario instance and will return the result after the scenario stop.
2271
+ """
2272
+ runScenario(instanceName: String, scenarioName: String!, variables: Object): ScenarioInstance!
2273
+ """To approve ActivityApproval"""
2274
+ saveActivityApproval(comment: String, id: String!): ActivityApproval @transaction
2275
+ """To save ActivityThread information"""
2276
+ saveActivityThread(id: String!, save: ActivityThreadSave!): ActivityThread! @transaction
2277
+ sendInvitation(email: String!, reference: String!, type: String!): Invitation!
2278
+ singleUpload(file: Upload!): Attachment! @transaction
2279
+ """To start ActivityThread"""
2280
+ startActivityThread(id: String!, output: Object, reason: String): ActivityThread @transaction
2281
+ """To start new scenario instance"""
2282
+ startScenario(instanceName: String, scenarioName: String!, variables: Object): ScenarioInstance!
2283
+ """To start new scenario instance"""
2284
+ stopScenario(instanceName: String): ScenarioInstance
2285
+ """To submit a ActivityThread"""
2286
+ submitActivityThread(id: String!, output: Object, reason: String): ActivityThread! @transaction
2287
+ terminateContract(partnerName: String!): Boolean! @privilege(category: "partner", privilege: "mutation") @transaction
2288
+ """To transfer owner of domain"""
2289
+ transferOwner(email: String!): Boolean! @privilege(domainOwnerGranted: true, superUserGranted: true) @transaction
2290
+ """To modify Activity information"""
2291
+ updateActivity(id: String!, patch: ActivityPatch!): Activity! @transaction
2292
+ """To modify ActivityInstance information"""
2293
+ updateActivityInstance(id: String!, patch: ActivityInstancePatch!): ActivityInstance! @transaction
2294
+ """To modify ActivityTemplate information"""
2295
+ updateActivityTemplate(id: String!, patch: ActivityTemplatePatch!): ActivityTemplate! @transaction
2296
+ updateAppliance(id: String!, patch: AppliancePatch!): Appliance!
2297
+ updateApplication(id: String!, patch: ApplicationPatch!): Application!
2298
+ """To modify ApprovalLine information"""
2299
+ updateApprovalLine(id: String!, patch: ApprovalLinePatch!): ApprovalLine! @transaction @privilege(category: "organization", privilege: "mutation", domainOwnerGranted: true)
2300
+ updateAttachment(id: String!, patch: AttachmentPatch!): Attachment! @transaction
2301
+ """To modify Board information"""
2302
+ updateBoard(id: String!, patch: BoardPatch!): Board! @transaction
2303
+ """To modify CommonCode information"""
2304
+ updateCommonCode(name: String!, patch: CommonCodePatch!): CommonCode! @transaction
2305
+ """To modify CommonCodeDetail information"""
2306
+ updateCommonCodeDetail(id: String!, patch: CommonCodeDetailPatch!): CommonCodeDetail! @transaction
2307
+ """To modify connection information"""
2308
+ updateConnection(name: String!, patch: ConnectionPatch!): Connection! @transaction
2309
+ """To modify Contact information"""
2310
+ updateContact(id: String!, patch: ContactPatch!): Contact! @transaction
2311
+ """To modify DataArchive information"""
2312
+ updateDataArchive(id: String!, patch: DataArchivePatch!): DataArchive! @privilege(category: "data-archive", privilege: "mutation", domainOwnerGranted: true) @transaction
2313
+ """To modify DataKeySet information"""
2314
+ updateDataKeySet(id: String!, patch: DataKeySetPatch!): DataKeySet! @transaction
2315
+ """To modify DataOoc information"""
2316
+ updateDataOoc(id: String!, patch: DataOocPatch!): DataOoc! @privilege(category: "data-ooc", privilege: "mutation", domainOwnerGranted: true) @transaction
2317
+ """To modify DataSensor information"""
2318
+ updateDataSensor(id: String!, patch: DataSensorPatch!): DataSensor! @transaction
2319
+ """To modify DataSet information"""
2320
+ updateDataSet(id: String!, patch: DataSetPatch!): DataSet! @privilege(category: "data-set", privilege: "mutation", domainOwnerGranted: true) @transaction
2321
+ """To modify Department information"""
2322
+ updateDepartment(id: String!, patch: DepartmentPatch!): Department! @transaction
2323
+ """To update domain (Only superuser is granted this privilege.)"""
2324
+ updateDomain(name: String!, patch: DomainPatch!): Domain! @transaction @privilege(superUserGranted: true)
2325
+ """To update multiple domains (Only superuser is granted this privilege.)"""
2326
+ updateDomains(patches: [DomainPatch!]!): Boolean! @transaction @privilege(superUserGranted: true)
2327
+ """To modify Employee information"""
2328
+ updateEmployee(id: String!, patch: EmployeePatch!): Employee! @transaction
2329
+ """To modify Entity' information"""
2330
+ updateEntity(id: String!, patch: EntityPatch!): Entity! @transaction
2331
+ """To modify EntityColumn information"""
2332
+ updateEntityColumn(id: String!, patch: EntityColumnPatch!): EntityColumn! @transaction
2333
+ """To modify Font information"""
2334
+ updateFont(id: String!, patch: FontPatch!): Font!
2335
+ """To modify Group information"""
2336
+ updateGroup(id: String!, patch: GroupPatch!): Group! @transaction
2337
+ """To modify LiteMenu information"""
2338
+ updateLiteMenu(id: String!, patch: LiteMenuPatch!): LiteMenu!
2339
+ """To modify Menu information"""
2340
+ updateMenu(id: String!, patch: MenuPatch!): Menu! @transaction
2341
+ """To modify MenuButton information"""
2342
+ updateMenuButton(id: String!, patch: MenuButtonPatch!): MenuButton! @transaction
2343
+ """To modify MenuColumn information"""
2344
+ updateMenuColumn(id: String!, patch: MenuColumnPatch!): MenuColumn! @transaction
2345
+ """To modify MenuDetail information"""
2346
+ updateMenuDetail(id: String!, patch: MenuDetailPatch!): MenuDetail! @transaction
2347
+ """To modify MenuDetailButton information"""
2348
+ updateMenuDetailButton(id: String!, patch: MenuDetailButtonPatch!): MenuDetailButton! @transaction
2349
+ """To modify MenuDetailColumn information"""
2350
+ updateMenuDetailColumn(id: String!, patch: MenuDetailColumnPatch!): MenuDetailColumn! @transaction
2351
+ """To modify multiple Activities' information"""
2352
+ updateMultipleActivity(patches: [ActivityPatch!]!): [Activity!]! @transaction
2353
+ """To modify multiple ActivityTemplates' information"""
2354
+ updateMultipleActivityTemplate(patches: [ActivityTemplatePatch!]!): [ActivityTemplate!]! @transaction
2355
+ """To modify multiple ApprovalLines' information"""
2356
+ updateMultipleApprovalLine(patches: [ApprovalLinePatch!]!): [ApprovalLine!]! @transaction @privilege(category: "organization", privilege: "mutation", domainOwnerGranted: true)
2357
+ """To modify multiple CommonCodes' information"""
2358
+ updateMultipleCommonCode(patches: [CommonCodePatch!]!): [CommonCode!]! @transaction
2359
+ """To modify multiple CommonCodeDetails' information"""
2360
+ updateMultipleCommonCodeDetail(patches: [CommonCodeDetailPatch!]!): [CommonCodeDetail!]! @transaction
2361
+ """To modify multiple connections' information"""
2362
+ updateMultipleConnection(patches: [ConnectionPatch!]!): [Connection!]! @transaction
2363
+ """To modify multiple Contacts' information"""
2364
+ updateMultipleContact(patches: [ContactPatch!]!): [Contact!]! @transaction
2365
+ """To modify multiple DataArchives' information"""
2366
+ updateMultipleDataArchive(patches: [DataArchivePatch!]!): [DataArchive!]! @privilege(category: "data-archive", privilege: "mutation", domainOwnerGranted: true) @transaction
2367
+ """To modify multiple DataKeySets' information"""
2368
+ updateMultipleDataKeySet(patches: [DataKeySetPatch!]!): [DataKeySet!]! @transaction
2369
+ """To modify multiple DataSensors' information"""
2370
+ updateMultipleDataSensor(patches: [DataSensorPatch!]!): [DataSensor!]! @transaction
2371
+ """To modify multiple DataSets' information"""
2372
+ updateMultipleDataSet(patches: [DataSetPatch!]!): [DataSet!]! @privilege(category: "data-set", privilege: "mutation", domainOwnerGranted: true) @transaction
2373
+ """To modify multiple Departments' information"""
2374
+ updateMultipleDepartment(patches: [DepartmentPatch!]!): [Department!]! @transaction
2375
+ """To modify multiple Employees' information"""
2376
+ updateMultipleEmployee(patches: [EmployeePatch!]!): [Employee!]! @transaction
2377
+ """To modify multiple Entitys' information"""
2378
+ updateMultipleEntity(patches: [EntityPatch!]!): [Entity!]! @transaction
2379
+ """To modify multiple Entitys' information"""
2380
+ updateMultipleEntityColumn(patches: [EntityColumnPatch!]!): [EntityColumn!]! @transaction
2381
+ """To modify multiple Menus' information"""
2382
+ updateMultipleMenu(patches: [MenuPatch!]!): [Menu!]! @transaction
2383
+ """To modify multiple ApprovalLines' information for current user"""
2384
+ updateMultipleMyApprovalLine(patches: [ApprovalLinePatch!]!): [ApprovalLine!]! @transaction
2385
+ """To modify multiple PartnerSettings' information"""
2386
+ updateMultiplePartnerSetting(patches: [PartnerSettingPatch!]!): [PartnerSetting!]! @transaction
2387
+ """To modify multiple PayloadLogs' information"""
2388
+ updateMultiplePayloadLog(patches: [PayloadLogPatch!]!): [PayloadLog!]! @transaction
2389
+ """To modify multiple scenarios' information"""
2390
+ updateMultipleScenario(patches: [ScenarioPatch!]!): [Scenario!]! @transaction
2391
+ """To modify multiple Settings' information"""
2392
+ updateMultipleSetting(patches: [SettingPatch!]!): [Setting!]! @transaction @privilege(category: "setting", privilege: "mutation")
2393
+ """To modify multiple steps' in a scenario"""
2394
+ updateMultipleStep(patches: [StepPatch!]!, scenarioId: String!): [Step!]! @transaction
2395
+ """To modify multiple Terminologies' information"""
2396
+ updateMultipleTerminologies(patches: [TerminologyPatch!]!): [Terminology!]! @transaction
2397
+ """To modify multiple users information"""
2398
+ updateMultipleUser(patches: [UserPatch!]!): [User!]! @privilege(category: "user", privilege: "mutation", domainOwnerGranted: true) @transaction
2399
+ """To modify multiple WorkShifts' information"""
2400
+ updateMultipleWorkShift(patches: [WorkShiftPatch!]!): [WorkShift!]! @privilege(category: "system", privilege: "mutation", domainOwnerGranted: true) @transaction
2401
+ """To modify ApprovalLine information for current user"""
2402
+ updateMyApprovalLine(id: String!, patch: ApprovalLinePatch!): ApprovalLine! @transaction
2403
+ """To modify Oauth2Client information"""
2404
+ updateOauth2Client(id: String!, patch: Oauth2ClientPatch!): Oauth2Client! @transaction
2405
+ """To modify PayloadLog information"""
2406
+ updatePayloadLog(id: String!, patch: PayloadLogPatch!): PayloadLog! @transaction
2407
+ """To modify PlayGroup information"""
2408
+ updatePlayGroup(id: String!, patch: PlayGroupPatch!): PlayGroup! @transaction
2409
+ """To modify privilege information"""
2410
+ updatePrivilege(category: String!, name: String!, patch: PrivilegePatch!): Privilege!
2411
+ """To modify role information"""
2412
+ updateRole(id: String!, patch: RolePatch!): Role! @privilege(category: "user", privilege: "mutation", domainOwnerGranted: true)
2413
+ """To update role Menu"""
2414
+ updateRoleMenu(isCheckedMenu: Boolean!, roleId: String!, targetMenuId: String!): Menu! @transaction
2415
+ """To update role Menu"""
2416
+ updateRoleMenus(isCheckedAll: Boolean!, parentMenuId: String!, roleId: String!): [Menu!]! @transaction
2417
+ """To modify scenario information"""
2418
+ updateScenario(name: String!, patch: ScenarioPatch!): Scenario! @transaction
2419
+ """To modify Setting information"""
2420
+ updateSetting(name: String!, patch: SettingPatch!): Setting! @transaction @privilege(category: "setting", privilege: "mutation")
2421
+ """To modify Terminology information"""
2422
+ updateTerminology(id: String!, patch: TerminologyPatch!): Terminology! @transaction
2423
+ """To modify user information"""
2424
+ updateUser(email: String!, patch: UserPatch!): User! @privilege(category: "user", privilege: "mutation", domainOwnerGranted: true) @transaction
2425
+ """To update roles for a user"""
2426
+ updateUserRoles(availableRoles: [ObjectRef!]!, selectedRoles: [ObjectRef!]!, userId: String!): User! @privilege(category: "user", privilege: "mutation", domainOwnerGranted: true) @transaction
2427
+ }
2428
+
2429
+ input NewActivity {
2430
+ active: Boolean
2431
+ activityType: String
2432
+ assigneeRole: ObjectRef
2433
+ cycleTime: Float
2434
+ description: String
2435
+ issuerRole: ObjectRef
2436
+ leadTime: Float
2437
+ model: Object
2438
+ name: String!
2439
+ priority: Float
2440
+ reportSource: String
2441
+ reportType: String
2442
+ schedule: String
2443
+ standardTime: Float
2444
+ startable: Boolean
2445
+ supervisoryRole: ObjectRef
2446
+ tactTime: Float
2447
+ thumbnail: Upload
2448
+ uiSource: String
2449
+ uiType: String
2450
+ }
2451
+
2452
+ input NewActivityInstance {
2453
+ activityId: String
2454
+ activityType: String
2455
+ adhocType: String
2456
+ approvalLine: Object
2457
+ assigneeRole: ObjectRef
2458
+ description: String
2459
+ dueAt: Date
2460
+ input: Object
2461
+ name: String!
2462
+ priority: Float
2463
+ reason: String
2464
+ refBy: String
2465
+ supervisoryRole: ObjectRef
2466
+ threadsMax: Int
2467
+ threadsMin: Int
2468
+ uiSource: String
2469
+ uiType: String
2470
+ }
2471
+
2472
+ input NewActivityTemplate {
2473
+ active: Boolean
2474
+ activityType: String
2475
+ category: String
2476
+ description: String
2477
+ model: Object
2478
+ name: String!
2479
+ reportSource: String
2480
+ reportType: String
2481
+ state: String
2482
+ thumbnail: Upload
2483
+ uiSource: String
2484
+ uiType: String
2485
+ visibility: String
2486
+ }
2487
+
2488
+ input NewAppliance {
2489
+ brand: String!
2490
+ description: String
2491
+ model: String!
2492
+ name: String!
2493
+ netmask: String
2494
+ serialNo: String!
2495
+ }
2496
+
2497
+ input NewApplication {
2498
+ description: String
2499
+ email: String
2500
+ icon: String
2501
+ name: String!
2502
+ redirectUrl: String
2503
+ type: ApplicationType
2504
+ url: String
2505
+ webhook: String
2506
+ }
2507
+
2508
+ input NewApprovalLine {
2509
+ description: String
2510
+ model: Object
2511
+ name: String!
2512
+ owner: ObjectRefApprovalLineOwnerType!
2513
+ ownerType: ApprovalLineOwnerType!
2514
+ }
2515
+
2516
+ input NewAttachment {
2517
+ category: String
2518
+ description: String
2519
+ file: Upload!
2520
+ refBy: String
2521
+ refType: String
2522
+ }
2523
+
2524
+ input NewBoard {
2525
+ description: String
2526
+ groupId: String
2527
+ model: String!
2528
+ name: String!
2529
+ thumbnail: String
2530
+ }
2531
+
2532
+ input NewCommonCode {
2533
+ description: String
2534
+ details: [String!]
2535
+ name: String!
2536
+ }
2537
+
2538
+ input NewCommonCodeDetail {
2539
+ commonCode: ObjectRef!
2540
+ description: String
2541
+ name: String!
2542
+ rank: Float!
2543
+ }
2544
+
2545
+ input NewConnection {
2546
+ description: String
2547
+ endpoint: String
2548
+ name: String!
2549
+ params: String
2550
+ type: String
2551
+ }
2552
+
2553
+ input NewContact {
2554
+ address: String
2555
+ company: String
2556
+ department: String
2557
+ email: String
2558
+ items: [ContactItemPatch!]
2559
+ name: String!
2560
+ note: String
2561
+ phone: String
2562
+ profile: ProfileInput
2563
+ }
2564
+
2565
+ input NewDataArchive {
2566
+ downloadUrl: String
2567
+ requestParams: Object
2568
+ status: String
2569
+ type: String
2570
+ }
2571
+
2572
+ input NewDataKeySet {
2573
+ active: Boolean
2574
+ dataKeyItems: [DataKeyItemPatch!]
2575
+ description: String
2576
+ name: String!
2577
+ reportType: String
2578
+ reportView: String
2579
+ thumbnail: Upload
2580
+ }
2581
+
2582
+ input NewDataOoc {
2583
+ collectedAt: Timestamp
2584
+ data: Object
2585
+ dataSample: ObjectRef
2586
+ dataSet: ObjectRef
2587
+ dataSetVersion: Float
2588
+ description: String
2589
+ name: String!
2590
+ ooc: Boolean
2591
+ oos: Boolean
2592
+ rawData: String
2593
+ source: String
2594
+ state: DataOocStatus
2595
+ workDate: String
2596
+ workShift: String
2597
+ }
2598
+
2599
+ input NewDataSample {
2600
+ collectedAt: Timestamp
2601
+ data: Object
2602
+ dataSet: ObjectRef
2603
+ dataSetVersion: Float
2604
+ description: String
2605
+ name: String
2606
+ rawData: String
2607
+ source: String
2608
+ workDate: String
2609
+ workShift: String
2610
+ }
2611
+
2612
+ input NewDataSensor {
2613
+ active: Boolean
2614
+ appliance: ObjectRef
2615
+ brand: String
2616
+ dataSet: ObjectRef
2617
+ description: String
2618
+ deviceId: String
2619
+ model: String
2620
+ name: String!
2621
+ netmask: String
2622
+ refBy: String
2623
+ serialNo: String
2624
+ tag: String
2625
+ }
2626
+
2627
+ input NewDataSet {
2628
+ active: Boolean
2629
+ dataItems: [DataItemPatch!]
2630
+ dataKeySet: ObjectRef
2631
+ description: String
2632
+ entryRole: ObjectRef
2633
+ entryType: String
2634
+ entryView: String
2635
+ monitorType: String
2636
+ monitorView: String
2637
+ name: String!
2638
+ partitionKeys: Object
2639
+ reportTemplate: Upload
2640
+ reportType: String
2641
+ reportView: String
2642
+ schedule: String
2643
+ supervisoryRole: ObjectRef
2644
+ timezone: String
2645
+ type: String
2646
+ useCase: String
2647
+ }
2648
+
2649
+ input NewDepartment {
2650
+ active: Boolean
2651
+ controlNo: String!
2652
+ description: String
2653
+ extension: String
2654
+ manager: ObjectRefForEmployee
2655
+ name: String!
2656
+ parent: ObjectRef
2657
+ picture: Upload
2658
+ state: DepartmentStatus
2659
+ }
2660
+
2661
+ input NewEmployee {
2662
+ active: Boolean
2663
+ controlNo: String!
2664
+ department: ObjectRef
2665
+ extension: String
2666
+ hiredOn: String
2667
+ name: String!
2668
+ note: String
2669
+ photo: Upload
2670
+ supervisor: ObjectRefForEmployee
2671
+ type: EmployeeType
2672
+ user: ObjectRefForUser
2673
+ }
2674
+
2675
+ input NewEntity {
2676
+ active: Boolean
2677
+ association: String
2678
+ bundle: String!
2679
+ columns: [String!]
2680
+ dataProp: String
2681
+ delStrategy: String
2682
+ description: String
2683
+ extEntity: Boolean
2684
+ fixedColumns: Int
2685
+ idField: String
2686
+ idType: String
2687
+ master: String
2688
+ multiSaveUrl: String
2689
+ name: String!
2690
+ refField: String
2691
+ searchUrl: String
2692
+ tableName: String!
2693
+ titleField: String
2694
+ }
2695
+
2696
+ input NewEntityColumn {
2697
+ colSize: Float
2698
+ colType: String!
2699
+ defVal: String
2700
+ description: String
2701
+ entity: ObjectRef!
2702
+ formEditor: String
2703
+ formFormat: String
2704
+ formValidator: String
2705
+ gridAlign: String
2706
+ gridEditor: String
2707
+ gridFormat: String
2708
+ gridRank: Int
2709
+ gridValidator: String
2710
+ gridWidth: Int
2711
+ ignoreOnSav: Boolean
2712
+ name: String!
2713
+ nullable: Boolean
2714
+ rangeVal: String
2715
+ rank: Float
2716
+ refName: String
2717
+ refParams: String
2718
+ refRelated: String
2719
+ refType: String
2720
+ refUrl: String
2721
+ reverseSort: Boolean
2722
+ searchEditor: String
2723
+ searchInitVal: String
2724
+ searchName: String
2725
+ searchOper: String
2726
+ searchRank: Int
2727
+ sortRank: Int
2728
+ term: String
2729
+ uniqRank: Int
2730
+ virtualField: Boolean
2731
+ }
2732
+
2733
+ input NewFont {
2734
+ active: Boolean
2735
+ files: [Upload!]
2736
+ name: String!
2737
+ path: String
2738
+ provider: String
2739
+ uri: String
2740
+ }
2741
+
2742
+ input NewGroup {
2743
+ description: String
2744
+ name: String!
2745
+ }
2746
+
2747
+ input NewLiteMenu {
2748
+ active: Boolean
2749
+ appName: String
2750
+ description: String
2751
+ icon: String
2752
+ name: String!
2753
+ parent: String
2754
+ rank: Int
2755
+ type: String
2756
+ value: String
2757
+ }
2758
+
2759
+ input NewMenu {
2760
+ buttons: [ObjectRef!]
2761
+ category: String
2762
+ children: [ObjectRef!]
2763
+ columns: [ObjectRef!]
2764
+ description: String
2765
+ detailFormId: String
2766
+ detailLayout: String
2767
+ fixedColumns: Int
2768
+ gridSaveUrl: String
2769
+ hiddenFlag: Boolean
2770
+ iconPath: String
2771
+ idField: String
2772
+ itemsProp: String
2773
+ menuType: String!
2774
+ name: String!
2775
+ pagination: Boolean
2776
+ parent: ObjectRef
2777
+ rank: Int
2778
+ resourceId: String
2779
+ resourceName: String
2780
+ resourceType: String
2781
+ resourceUrl: String
2782
+ role: ObjectRef
2783
+ routing: String
2784
+ routingType: String
2785
+ template: String
2786
+ titleField: String
2787
+ totalProp: String
2788
+ }
2789
+
2790
+ input NewMenuButton {
2791
+ auth: String
2792
+ icon: String
2793
+ logic: String
2794
+ menu: String!
2795
+ rank: Int
2796
+ style: String
2797
+ text: String!
2798
+ }
2799
+
2800
+ input NewMenuColumn {
2801
+ colSize: Int
2802
+ colType: String!
2803
+ defVal: String
2804
+ description: String
2805
+ extField: Boolean
2806
+ formEditor: String
2807
+ formFormat: String
2808
+ formValidator: String
2809
+ gridAlign: String
2810
+ gridEditor: String
2811
+ gridFormat: String
2812
+ gridRank: Int
2813
+ gridValidator: String
2814
+ gridWidth: Int
2815
+ ignoreOnSave: Boolean
2816
+ menu: String!
2817
+ name: String!
2818
+ nullable: Boolean
2819
+ rangeVal: String
2820
+ rank: Int
2821
+ refName: String
2822
+ refParams: String
2823
+ refRelated: String
2824
+ refType: String
2825
+ refUrl: String
2826
+ reverseSort: Boolean
2827
+ searchEditor: String
2828
+ searchInitVal: String
2829
+ searchName: String
2830
+ searchOper: String
2831
+ searchRank: Int
2832
+ sortRank: Int
2833
+ term: String
2834
+ uniqRank: Int
2835
+ virtualField: Boolean
2836
+ }
2837
+
2838
+ input NewMenuDetail {
2839
+ association: String
2840
+ buttons: [String!]
2841
+ columns: [String!]
2842
+ customView: String
2843
+ dataProp: String
2844
+ entityId: String
2845
+ masterField: String
2846
+ menu: String!
2847
+ name: String!
2848
+ saveUrl: String
2849
+ searchUrl: String
2850
+ viewSection: String!
2851
+ }
2852
+
2853
+ input NewMenuDetailButton {
2854
+ icon: String
2855
+ logic: String
2856
+ menuDetail: String!
2857
+ rank: Int
2858
+ style: String
2859
+ text: String!
2860
+ }
2861
+
2862
+ input NewMenuDetailColumn {
2863
+ colSize: Int
2864
+ colType: String
2865
+ defVal: String
2866
+ description: String
2867
+ extField: Boolean
2868
+ formEditor: String
2869
+ formFormat: String
2870
+ formValidator: String
2871
+ gridAlign: String
2872
+ gridEditor: String
2873
+ gridFormat: String
2874
+ gridRank: Int
2875
+ gridValidator: String
2876
+ gridWidth: Int
2877
+ ignoreOnSave: Boolean
2878
+ menuDetail: String
2879
+ name: String
2880
+ nullable: Boolean
2881
+ rangeVal: String
2882
+ rank: Int
2883
+ refName: String
2884
+ refParams: String
2885
+ refRelated: String
2886
+ refType: String
2887
+ refUrl: String
2888
+ reverseSort: Boolean
2889
+ searchEditor: String
2890
+ searchInitVal: String
2891
+ searchName: String
2892
+ searchOper: String
2893
+ searchRank: Int
2894
+ sortRank: Int
2895
+ term: String
2896
+ uniqRank: Int
2897
+ virtualField: Boolean
2898
+ }
2899
+
2900
+ input NewOauth2Client {
2901
+ accessToken: String
2902
+ accessTokenUrl: String
2903
+ authUrl: String
2904
+ callbackUrl: String
2905
+ clientId: String
2906
+ clientSecret: String
2907
+ codeChallengeMethod: String
2908
+ codeVerifier: String
2909
+ description: String
2910
+ grantType: String
2911
+ icon: String
2912
+ jwtToken: String
2913
+ name: String!
2914
+ password: String
2915
+ refreshToken: String
2916
+ scopes: String
2917
+ username: String
2918
+ webhook: String
2919
+ }
2920
+
2921
+ input NewPayloadLog {
2922
+ description: String
2923
+ name: String!
2924
+ }
2925
+
2926
+ input NewPlayGroup {
2927
+ description: String
2928
+ name: String!
2929
+ }
2930
+
2931
+ input NewPrivilege {
2932
+ category: String!
2933
+ description: String
2934
+ name: String!
2935
+ roles: [ObjectRef!]
2936
+ }
2937
+
2938
+ input NewRole {
2939
+ description: String
2940
+ name: String!
2941
+ privileges: [ObjectRef!]
2942
+ users: [ObjectRef!]
2943
+ }
2944
+
2945
+ input NewScenario {
2946
+ active: Boolean
2947
+ description: String
2948
+ name: String!
2949
+ schedule: String
2950
+ timezone: String
2951
+ type: String
2952
+ }
2953
+
2954
+ input NewSetting {
2955
+ category: String!
2956
+ description: String
2957
+ name: String!
2958
+ value: String
2959
+ }
2960
+
2961
+ input NewTerminology {
2962
+ category: String!
2963
+ description: String
2964
+ display: String!
2965
+ locale: String!
2966
+ name: String!
2967
+ }
2968
+
2969
+ input NewUser {
2970
+ description: String
2971
+ email: String!
2972
+ name: String!
2973
+ password: String
2974
+ roles: [ObjectRef!]
2975
+ userType: String
2976
+ }
2977
+
2978
+ input NewUserByDomainWizardInput {
2979
+ email: String!
2980
+ isInvitee: Boolean
2981
+ name: String!
2982
+ owner: Boolean!
2983
+ password: String
2984
+ roles: [NewRole!]!
2985
+ }
2986
+
2987
+ type Notification {
2988
+ body: String!
2989
+ domain: Domain
2990
+ image: String
2991
+ property: Any
2992
+ subject: String
2993
+ timestamp: Date
2994
+ title: String!
2995
+ type: String
2996
+ url: String
2997
+ }
2998
+
2999
+ """Entity for Oauth2Client"""
3000
+ type Oauth2Client {
3001
+ accessToken: String
3002
+ accessTokenUrl: String
3003
+ authUrl: String
3004
+ callbackUrl: String
3005
+ clientId: String
3006
+ clientSecret: String
3007
+ codeChallengeMethod: String
3008
+ codeVerifier: String
3009
+ createdAt: Timestamp
3010
+ creator: User
3011
+ description: String
3012
+ domain: Domain
3013
+ expires: Timestamp
3014
+ grantType: String
3015
+ icon: String
3016
+ id: ID!
3017
+ jwtToken: String
3018
+ name: String!
3019
+ password: String
3020
+ refreshToken: String
3021
+ scopes: String
3022
+ state: String
3023
+ tokenType: String
3024
+ updatedAt: Timestamp
3025
+ updater: User
3026
+ username: String
3027
+ webhook: String
3028
+ }
3029
+
3030
+ type Oauth2ClientList {
3031
+ items: [Oauth2Client!]!
3032
+ total: Int!
3033
+ }
3034
+
3035
+ input Oauth2ClientPatch {
3036
+ accessToken: String
3037
+ accessTokenUrl: String
3038
+ authUrl: String
3039
+ callbackUrl: String
3040
+ clientId: String
3041
+ clientSecret: String
3042
+ codeChallengeMethod: String
3043
+ codeVerifier: String
3044
+ description: String
3045
+ grantType: String
3046
+ icon: String
3047
+ jwtToken: String
3048
+ name: String
3049
+ password: String
3050
+ refreshToken: String
3051
+ scopes: String
3052
+ username: String
3053
+ webhook: String
3054
+ }
3055
+
3056
+ """Can be anything"""
3057
+ scalar Object
3058
+
3059
+ input ObjectRef {
3060
+ """Field description"""
3061
+ description: String
3062
+ """Field id"""
3063
+ id: ID!
3064
+ """Field name"""
3065
+ name: String
3066
+ }
3067
+
3068
+ input ObjectRefApprovalLineOwnerType {
3069
+ controlNo: String
3070
+ """Field description"""
3071
+ description: String
3072
+ """Field id"""
3073
+ id: ID!
3074
+ """Field name"""
3075
+ name: String
3076
+ }
3077
+
3078
+ input ObjectRefForEmployee {
3079
+ controlNo: String
3080
+ """Field description"""
3081
+ description: String
3082
+ email: String
3083
+ """Field id"""
3084
+ id: ID!
3085
+ """Field name"""
3086
+ name: String
3087
+ photo: String
3088
+ }
3089
+
3090
+ input ObjectRefForUser {
3091
+ """Field description"""
3092
+ description: String
3093
+ email: String
3094
+ """Field id"""
3095
+ id: ID!
3096
+ """Field name"""
3097
+ name: String
3098
+ }
3099
+
3100
+ input Pagination {
3101
+ limit: Int
3102
+ page: Int
3103
+ }
3104
+
3105
+ type Partner {
3106
+ approvedAt: Timestamp!
3107
+ approver: User
3108
+ domain: Domain!
3109
+ id: ID!
3110
+ partnerDomain: Domain!
3111
+ requestedAt: Timestamp!
3112
+ requester: User
3113
+ }
3114
+
3115
+ type PartnerList {
3116
+ items: [Partner!]
3117
+ total: Int
3118
+ }
3119
+
3120
+ """Entity for PartnerSetting"""
3121
+ type PartnerSetting {
3122
+ category: String
3123
+ createdAt: Timestamp
3124
+ creator: User
3125
+ description: String
3126
+ domain: Domain
3127
+ id: ID!
3128
+ name: String
3129
+ partnerDomain: Domain
3130
+ partnerDomainId: String
3131
+ setting: Setting
3132
+ settingId: String
3133
+ updatedAt: Timestamp
3134
+ updater: User
3135
+ value: String
3136
+ }
3137
+
3138
+ type PartnerSettingList {
3139
+ items: [PartnerSetting!]!
3140
+ total: Int!
3141
+ }
3142
+
3143
+ input PartnerSettingPatch {
3144
+ cuFlag: String!
3145
+ id: ID
3146
+ partnerDomain: ObjectRef
3147
+ setting: ObjectRef
3148
+ value: String
3149
+ }
3150
+
3151
+ """Entity for PayloadLog"""
3152
+ type PayloadLog {
3153
+ createdAt: Timestamp
3154
+ creator: User
3155
+ domain: Domain
3156
+ endpoint: String!
3157
+ id: ID!
3158
+ name: String!
3159
+ request: String!
3160
+ response: String!
3161
+ src: String
3162
+ type: String!
3163
+ updatedAt: Timestamp
3164
+ updater: User
3165
+ }
3166
+
3167
+ type PayloadLogList {
3168
+ items: [PayloadLog!]!
3169
+ total: Int!
3170
+ }
3171
+
3172
+ input PayloadLogPatch {
3173
+ cuFlag: String!
3174
+ description: String
3175
+ id: ID
3176
+ name: String
3177
+ }
3178
+
3179
+ type PendingObject {
3180
+ due: String!
3181
+ priority: Int!
3182
+ stuff: Object!
3183
+ tag: String
3184
+ }
3185
+
3186
+ """Entity for Board PlayGroup"""
3187
+ type PlayGroup {
3188
+ boards: [Board!]
3189
+ createdAt: Timestamp
3190
+ creator: User
3191
+ description: String
3192
+ domain: Domain
3193
+ id: ID!
3194
+ name: String!
3195
+ updatedAt: Timestamp
3196
+ updater: User
3197
+ }
3198
+
3199
+ type PlayGroupList {
3200
+ items: [PlayGroup!]!
3201
+ total: Int!
3202
+ }
3203
+
3204
+ input PlayGroupPatch {
3205
+ description: String
3206
+ name: String
3207
+ }
3208
+
3209
+ type Privilege {
3210
+ category: String
3211
+ createdAt: Timestamp
3212
+ creator: User
3213
+ description: String
3214
+ id: ID!
3215
+ name: String!
3216
+ roles: [Role!]
3217
+ updatedAt: Timestamp
3218
+ updater: User
3219
+ }
3220
+
3221
+ type PrivilegeList {
3222
+ items: [Privilege!]
3223
+ total: Int
3224
+ }
3225
+
3226
+ input PrivilegePatch {
3227
+ category: String
3228
+ description: String
3229
+ id: String
3230
+ name: String
3231
+ roles: [ObjectRef!]
3232
+ }
3233
+
3234
+ """Object type for Profile"""
3235
+ type Profile {
3236
+ left: Float
3237
+ picture: String
3238
+ top: Float
3239
+ zoom: Float
3240
+ }
3241
+
3242
+ """Input type for Profile"""
3243
+ input ProfileInput {
3244
+ file: Upload
3245
+ left: Float
3246
+ picture: String
3247
+ top: Float
3248
+ zoom: Float
3249
+ }
3250
+
3251
+ type PropertySpec {
3252
+ label: String!
3253
+ name: String!
3254
+ placeholder: String
3255
+ property: Object
3256
+ type: String!
3257
+ }
3258
+
3259
+ type Query {
3260
+ """To fetch multiple Activities"""
3261
+ activities(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ActivityList!
3262
+ """To fetch a Activity"""
3263
+ activity(id: String!): Activity
3264
+ """To fetch a ActivityApproval"""
3265
+ activityApproval(id: String!): ActivityApproval
3266
+ """To fetch multiple ActivityApprovals"""
3267
+ activityApprovals(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ActivityApprovalList!
3268
+ """To fetch a Activity by name"""
3269
+ activityByName(name: String!): Activity
3270
+ """To fetch a ActivityInstance"""
3271
+ activityInstance(id: String!): ActivityInstance
3272
+ """To fetch multiple ActivityInstances"""
3273
+ activityInstances(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ActivityInstanceList!
3274
+ """To fetch a Activity Summary"""
3275
+ activitySummary: ActivitySummary
3276
+ """To fetch a ActivityTemplate"""
3277
+ activityTemplate(id: String!): ActivityTemplate
3278
+ """To fetch multiple ActivityTemplates"""
3279
+ activityTemplates(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ActivityTemplateList!
3280
+ """To fetch a ActivityThread"""
3281
+ activityThread(id: String!): ActivityThread
3282
+ """To fetch multiple ActivityThreads"""
3283
+ activityThreads(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ActivityThreadList!
3284
+ appBinding(id: String!): AppBinding!
3285
+ appBindings(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): AppBindingList!
3286
+ """ To fetch appliance"""
3287
+ appliance(id: String!): Appliance!
3288
+ """To fetch multiple appliance"""
3289
+ appliances(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ApplianceList!
3290
+ """To fetch application"""
3291
+ application(id: String!): Application!
3292
+ """To fetch multiple application"""
3293
+ applications(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ApplicationList!
3294
+ """To fetch a approval line"""
3295
+ approvalLine(id: String!): ApprovalLine
3296
+ """To fetch referable approval lines for the user"""
3297
+ approvalLineReferences(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ApprovalLineList!
3298
+ """To fetch multiple approval lines"""
3299
+ approvalLines(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ApprovalLineList! @privilege(category: "organization", privilege: "query", domainOwnerGranted: true)
3300
+ """To fetch the list of work results I need to review"""
3301
+ approvalWaitingList(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ActivityApprovalList!
3302
+ attachment(id: String!): Attachment!
3303
+ attachments(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): AttachmentList!
3304
+ """To fetch a Board"""
3305
+ board(id: String!): Board!
3306
+ """To fetch a BoardSettings"""
3307
+ boardSettings(names: [String!]): [BoardSetting!]!
3308
+ """To fetch multiple Boards"""
3309
+ boards(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): BoardList!
3310
+ """To fetch Boards created by me"""
3311
+ boardsCreatedByMe(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): BoardList!
3312
+ """To check if system would provide default password to create new user"""
3313
+ checkDefaultPassword: Boolean!
3314
+ """To check if system would provide default password to create new user"""
3315
+ checkResettablePasswordToDefault: Boolean!
3316
+ """To fetch the preset of role for new user"""
3317
+ checkRolePreset: [Role!]!
3318
+ """To check if current user is belongs to current domain"""
3319
+ checkUserBelongsDomain: Boolean!
3320
+ """..."""
3321
+ checkUserExistence(email: String!): Boolean! @privilege(category: "user", privilege: "query")
3322
+ """To fetch common approval lines"""
3323
+ commonApprovalLines(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ApprovalLineList!
3324
+ """To fetch a CommonCode"""
3325
+ commonCode(name: String!): CommonCode
3326
+ """To fetch a CommonCodeDetail"""
3327
+ commonCodeDetail(id: String!): CommonCodeDetail!
3328
+ """To fetch multiple CommonCodeDetails"""
3329
+ commonCodeDetails(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): CommonCodeDetailList!
3330
+ """To fetch multiple CommonCodes"""
3331
+ commonCodes(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): CommonCodeList!
3332
+ """To fetch a connector"""
3333
+ connection(name: String!): ConnectorType!
3334
+ """To fetch multiple connections"""
3335
+ connections(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ConnectionList!
3336
+ """To fetch the connector from a connection"""
3337
+ connectorByConnection(connectionName: String!): ConnectorType!
3338
+ """To fetch multiple connector"""
3339
+ connectors: ConnectorList!
3340
+ """To fetch a Contact"""
3341
+ contact(id: String!): Contact
3342
+ """To fetch multiple Contacts"""
3343
+ contacts(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ContactList!
3344
+ customers: [Domain!]! @privilege(category: "partner", privilege: "query", domainOwnerGranted: true)
3345
+ """To fetch a DataArchive"""
3346
+ dataArchive(id: String!): DataArchive! @privilege(category: "data-archive", privilege: "query", domainOwnerGranted: true)
3347
+ """To fetch multiple DataArchives"""
3348
+ dataArchives(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): DataArchiveList! @privilege(category: "data-archive", privilege: "query", domainOwnerGranted: true)
3349
+ """To fetch a DataKeySet"""
3350
+ dataKeySet(id: String!): DataKeySet
3351
+ """To fetch multiple DataKeySets"""
3352
+ dataKeySets(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): DataKeySetList!
3353
+ """To fetch a DataOoc"""
3354
+ dataOoc(id: String!): DataOoc! @privilege(category: "data-ooc", privilege: "query", domainOwnerGranted: true)
3355
+ """To fetch multiple DataOoc"""
3356
+ dataOocs(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): DataOocList! @privilege(category: "data-ooc", privilege: "query", domainOwnerGranted: true)
3357
+ """To fetch a data sample"""
3358
+ dataSample(id: String!): DataSample! @privilege(category: "data-sample", privilege: "query", domainOwnerGranted: true)
3359
+ """To fetch multiple data samples"""
3360
+ dataSamples(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): DataSampleList! @privilege(category: "data-sample", privilege: "query", domainOwnerGranted: true)
3361
+ """To fetch multiple data samples by data key set"""
3362
+ dataSamplesByDataKeySet(dataKeySetId: String!, filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): DataSampleList! @privilege(category: "data-sample", privilege: "query", domainOwnerGranted: true)
3363
+ """To fetch a DataSensor"""
3364
+ dataSensor(id: String!): DataSensor!
3365
+ """To fetch multiple DataSensors"""
3366
+ dataSensors(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): DataSensorList!
3367
+ """To fetch a DataSet"""
3368
+ dataSet(id: String!): DataSet! @privilege(category: "data-set", privilege: "query", domainOwnerGranted: true)
3369
+ """To fetch multiple DataSetHistories"""
3370
+ dataSetHistories(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): DataSetHistoryList! @privilege(category: "data-set-history", privilege: "query", domainOwnerGranted: true)
3371
+ """To fetch a DataSetHistory"""
3372
+ dataSetHistory(id: String!, timestamp: Date!): DataSetHistory! @privilege(category: "data-set-history", privilege: "query", domainOwnerGranted: true)
3373
+ """To fetch multiple DataSets"""
3374
+ dataSets(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): DataSetList! @privilege(category: "data-set", privilege: "query", domainOwnerGranted: true)
3375
+ """To fetch multiple DataSets for data entry manually"""
3376
+ dataSetsForEntry(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): DataSetList!
3377
+ """To fetch multiple DataSets to see data report"""
3378
+ dataSetsForReport(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): DataSetList!
3379
+ """To fetch a data-spec"""
3380
+ dataSpec(name: String!): DataSpec!
3381
+ """To fetch all data-specs"""
3382
+ dataSpecs: DataSpecList!
3383
+ """To fetch a Department"""
3384
+ department(id: String!): Department
3385
+ """To fetch a Root Department"""
3386
+ departmentRoot: Department
3387
+ """To fetch multiple Departments"""
3388
+ departments(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): DepartmentList!
3389
+ """To fetch domain"""
3390
+ domain(id: String!): Domain! @privilege(category: "system", privilege: "query", domainOwnerGranted: true, superUserGranted: true)
3391
+ """To fetch all domains (Only superuser is granted this privilege.)"""
3392
+ domains(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): DomainList! @privilege(superUserGranted: true)
3393
+ """To fetch my own ActivityInstances"""
3394
+ draftList(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ActivityInstanceList!
3395
+ """To fetch a Employee"""
3396
+ employee(id: String!): Employee
3397
+ """To fetch multiple Employees"""
3398
+ employees(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): EmployeeList!
3399
+ """To fetch multiple Entities"""
3400
+ entities(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): EntityList!
3401
+ """To fetch a Entity"""
3402
+ entity(id: String!): Entity!
3403
+ """To fetch a EntityColumn"""
3404
+ entityColumn(id: String!): EntityColumn!
3405
+ """To fetch multiple EntityColumns"""
3406
+ entityColumns(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): EntityColumnList!
3407
+ """To fetch a EntityMetadata"""
3408
+ entityMetadata(name: String!): EntityMetadata!
3409
+ """To fetch the state of a connection"""
3410
+ fetchConnectionState(name: String!): ConnectionState!
3411
+ """To fetch a Font"""
3412
+ font(id: String!): Font!
3413
+ """To fetch multiple Fonts"""
3414
+ fonts(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): FontList!
3415
+ """To fetch a work date and work shift for given datetime"""
3416
+ getWorkDateAndShift(dateTime: Timestamp!): WorkDateWorkShiftPair!
3417
+ grantedRoles: [GrantedRole!]! @privilege(category: "user", privilege: "query", domainOwnerGranted: true, superUserGranted: true)
3418
+ grantingRoles(customerId: String!): [GrantedRole!]! @privilege(category: "user", privilege: "query", domainOwnerGranted: true)
3419
+ """To fetch a Group"""
3420
+ group(id: String!): Group
3421
+ """To fetch multiple Groups"""
3422
+ groups(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): GroupList!
3423
+ invitation(email: String!, reference: String!, type: String!): Invitation!
3424
+ invitations(reference: String!, type: String!): InvitationList!
3425
+ """To fetch a LiteMenu"""
3426
+ liteMenu(id: String!): LiteMenu!
3427
+ """To fetch multiple LiteMenus"""
3428
+ liteMenus(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): LiteMenuList!
3429
+ """To fetch a Menu"""
3430
+ menu(id: String!): Menu!
3431
+ """To fetch a MenuButton"""
3432
+ menuButton(id: String!): MenuButton!
3433
+ """To fetch multiple MenuButtons"""
3434
+ menuButtons(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): MenuButtonList!
3435
+ """To fetch a Menu by routing"""
3436
+ menuByRouting(routing: String!): Menu!
3437
+ """To fetch a MenuColumn"""
3438
+ menuColumn(id: String!): MenuColumn!
3439
+ """To fetch multiple MenuColumns"""
3440
+ menuColumns(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): MenuColumnList!
3441
+ """To fetch a MenuDetail"""
3442
+ menuDetail(id: String!): MenuDetail!
3443
+ """To fetch a MenuDetailButton"""
3444
+ menuDetailButton(id: String!): MenuDetailButton!
3445
+ """To fetch multiple MenuDetailButtons"""
3446
+ menuDetailButtons(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): MenuDetailButtonList!
3447
+ """To fetch a MenuDetailColumn"""
3448
+ menuDetailColumn(id: String!): MenuDetailColumn!
3449
+ """To fetch multiple MenuDetailColumns"""
3450
+ menuDetailColumns(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): MenuDetailColumnList!
3451
+ """To fetch multiple MenuDetails"""
3452
+ menuDetails(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): MenuDetailList!
3453
+ """To fetch multiple Menus"""
3454
+ menus(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): MenuList!
3455
+ """To fetch approval lines only for to the user"""
3456
+ myApprovalLines(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ApprovalLineList!
3457
+ myLoginHistories(limit: Float!): [LoginHistory!]!
3458
+ """To fetch roles of current user"""
3459
+ myRoles: [Role!]!
3460
+ """To fetch a Oauth2Client"""
3461
+ oauth2Client(id: String!): Oauth2Client
3462
+ """To fetch multiple Oauth2Clients"""
3463
+ oauth2Clients(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): Oauth2ClientList!
3464
+ """To fetch specific domain's CommonCodes by given name"""
3465
+ partnerCommonCode(name: String!, partnerDomainId: String!): CommonCode!
3466
+ """To fetch a PartnerSetting"""
3467
+ partnerSetting(name: String!, partnerDomainId: String!): PartnerSetting!
3468
+ """To fetch multiple PartnerSettings"""
3469
+ partnerSettings(filters: [Filter!]!, pagination: Pagination!, partnerDomain: ObjectRef!, sortings: [Sorting!]!): PartnerSettingList!
3470
+ partners(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): PartnerList! @privilege(category: "partner", privilege: "query", domainOwnerGranted: true)
3471
+ """To fetch a PayloadLog"""
3472
+ payloadLog(id: String!): PayloadLog!
3473
+ """To fetch multiple PayloadLogs"""
3474
+ payloadLogs(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): PayloadLogList!
3475
+ """To get list of activity instance that a user can pick"""
3476
+ pickableActivityList(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ActivityInstanceList!
3477
+ """To fetch a PlayGroup"""
3478
+ playGroup(id: String!): PlayGroup
3479
+ """To fetch multiple PlayGroups"""
3480
+ playGroups(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): PlayGroupList!
3481
+ """To fetch privilege"""
3482
+ privilege(category: String!, name: String!): Privilege!
3483
+ """To fetch multiple privileges"""
3484
+ privileges(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): PrivilegeList!
3485
+ """To query data in S3 using Amazon Athena SDK"""
3486
+ queryFromAthena(queryData: Object!): Any!
3487
+ """To fetch role"""
3488
+ role(name: String!): Role! @privilege(category: "user", privilege: "query", domainOwnerGranted: true, superUserGranted: true)
3489
+ """To fetch Menus by role"""
3490
+ roleMenus(roleId: String!): MenuList!
3491
+ """To fetch priviliges of a role"""
3492
+ rolePrivileges(roleId: String!): [RolePrivilege!]! @privilege(category: "user", privilege: "query", domainOwnerGranted: true, superUserGranted: true)
3493
+ """To fetch multiple users"""
3494
+ roles(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): RoleList! @privilege(category: "user", privilege: "query", domainOwnerGranted: true, superUserGranted: true)
3495
+ """To fetch a scenario"""
3496
+ scenario(id: String!): Scenario!
3497
+ """To fetch a scenario instance"""
3498
+ scenarioInstance(instanceName: String!): ScenarioInstance!
3499
+ """To fetch multiple scenario instances"""
3500
+ scenarioInstances(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ScenarioInstanceList!
3501
+ """To fetch multiple scenarios"""
3502
+ scenarios(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ScenarioList!
3503
+ searchCustomers(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): DomainList! @privilege(category: "partner", privilege: "query")
3504
+ """To fetch a Setting"""
3505
+ setting(name: String!, partnerDomainId: String): Setting! @privilege(category: "setting", privilege: "query")
3506
+ """To fetch multiple Settings"""
3507
+ settings(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): SettingList! @privilege(category: "setting", privilege: "query")
3508
+ """To fetch the list of activities I can start"""
3509
+ startableActivities(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ActivityList!
3510
+ """To fetch a step"""
3511
+ step(name: String!): Step!
3512
+ """To fetch multiple steps"""
3513
+ steps(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): StepList!
3514
+ """To fetch the list of activities that I can report on"""
3515
+ supervisableActivities(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ActivityList!
3516
+ """To fetch a task-type"""
3517
+ taskType(name: String!): TaskType!
3518
+ """To fetch multiple task-type"""
3519
+ taskTypes: TaskTypeList!
3520
+ """To fetch the connector from a task-type"""
3521
+ taskTypesByConnection(connectionName: String!): TaskTypeList!
3522
+ """To fetch multiple Terminologies"""
3523
+ terminologies(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): TerminologyList!
3524
+ """To fetch a Terminology"""
3525
+ terminology(id: String!): Terminology!
3526
+ """To fetch my own ActivityThreads"""
3527
+ todoList(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ActivityThreadList!
3528
+ """To fetch user"""
3529
+ user(email: String!): User! @privilege(category: "user", privilege: "query", domainOwnerGranted: true, superUserGranted: true)
3530
+ """To fetch Menus by role"""
3531
+ userMenus: [Menu!]!
3532
+ """To fetch roles of a user"""
3533
+ userRoles(userId: String!): [UserRole!]! @privilege(category: "user", privilege: "query", domainOwnerGranted: true, superUserGranted: true)
3534
+ """To fetch multiple users"""
3535
+ users(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): UserList! @privilege(category: "user", privilege: "query", domainOwnerGranted: true, superUserGranted: true)
3536
+ vendors: [Domain!]! @privilege(category: "partner", privilege: "query", domainOwnerGranted: true)
3537
+ """To fetch multiple WorkShifts"""
3538
+ workShifts(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): WorkShiftList!
3539
+ }
3540
+
3541
+ type Role {
3542
+ createdAt: Timestamp
3543
+ creator: User
3544
+ description: String
3545
+ domain: Domain!
3546
+ id: ID!
3547
+ name: String!
3548
+ privileges: [Privilege!]
3549
+ updatedAt: Timestamp
3550
+ updater: User
3551
+ users: [User!]
3552
+ }
3553
+
3554
+ type RoleList {
3555
+ items: [Role!]
3556
+ total: Int
3557
+ }
3558
+
3559
+ input RolePatch {
3560
+ cuFlag: String
3561
+ description: String
3562
+ id: String
3563
+ name: String
3564
+ privileges: [ObjectRef!]
3565
+ users: [ObjectRef!]
3566
+ }
3567
+
3568
+ type RolePrivilege {
3569
+ assigned: Boolean
3570
+ category: String
3571
+ description: String
3572
+ id: String
3573
+ name: String
3574
+ }
3575
+
3576
+ type Scenario {
3577
+ active: Boolean
3578
+ createdAt: Timestamp
3579
+ creator: User
3580
+ description: String
3581
+ domain: Domain
3582
+ id: ID!
3583
+ instances: [ScenarioInstance!]
3584
+ name: String!
3585
+ schedule: String
3586
+ state: String
3587
+ steps: [Step!]
3588
+ timezone: String
3589
+ type: String
3590
+ updatedAt: Timestamp
3591
+ updater: User
3592
+ }
3593
+
3594
+ type ScenarioInstance {
3595
+ data: Object
3596
+ domain: Domain
3597
+ instanceName: String
3598
+ message: String
3599
+ progress: ScenarioInstanceProgress
3600
+ root: ScenarioInstance
3601
+ scenarioName: String
3602
+ state: String
3603
+ timestamp: Timestamp
3604
+ variables: Object
3605
+ }
3606
+
3607
+ type ScenarioInstanceList {
3608
+ items: [ScenarioInstance!]!
3609
+ total: Int!
3610
+ }
3611
+
3612
+ type ScenarioInstanceProgress {
3613
+ rate: Int!
3614
+ rounds: Int!
3615
+ step: Int!
3616
+ steps: Int!
3617
+ }
3618
+
3619
+ type ScenarioInstanceState {
3620
+ data: Object
3621
+ domain: Domain
3622
+ instanceName: String
3623
+ message: String
3624
+ progress: ScenarioInstanceProgress
3625
+ scenarioName: String
3626
+ state: ScenarioInstanceStatus
3627
+ timestamp: Timestamp
3628
+ variables: Object
3629
+ }
3630
+
3631
+ """state enumeration of a scenario-instance"""
3632
+ enum ScenarioInstanceStatus {
3633
+ HALTED
3634
+ READY
3635
+ STARTED
3636
+ STOPPED
3637
+ UNLOADED
3638
+ }
3639
+
3640
+ type ScenarioList {
3641
+ items: [Scenario!]!
3642
+ total: Int!
3643
+ }
3644
+
3645
+ input ScenarioPatch {
3646
+ active: Boolean
3647
+ cuFlag: String
3648
+ description: String
3649
+ id: ID
3650
+ name: String
3651
+ schedule: String
3652
+ steps: [StepPatch!]
3653
+ timezone: String
3654
+ type: String
3655
+ }
3656
+
3657
+ type ScenarioQueueState {
3658
+ domain: Domain!
3659
+ queue: [PendingObject!]!
3660
+ }
3661
+
3662
+ """Entity for Setting"""
3663
+ type Setting {
3664
+ category: String!
3665
+ createdAt: Timestamp
3666
+ creator: User
3667
+ description: String
3668
+ domain: Domain
3669
+ id: ID!
3670
+ name: String!
3671
+ updatedAt: Timestamp
3672
+ updater: User
3673
+ value: String
3674
+ }
3675
+
3676
+ type SettingList {
3677
+ items: [Setting!]!
3678
+ total: Int!
3679
+ }
3680
+
3681
+ input SettingPatch {
3682
+ category: String
3683
+ cuFlag: String
3684
+ description: String
3685
+ id: ID
3686
+ name: String
3687
+ value: String
3688
+ }
3689
+
3690
+ input Sorting {
3691
+ """
3692
+ Set to true if descending sort. Default is "false"
3693
+ """
3694
+ desc: Boolean
3695
+ """Field name to sort by"""
3696
+ name: String!
3697
+ }
3698
+
3699
+ type Step {
3700
+ connection: String
3701
+ createdAt: Timestamp
3702
+ creator: User
3703
+ description: String
3704
+ domain: Domain
3705
+ id: ID!
3706
+ log: Boolean
3707
+ name: String!
3708
+ params: String
3709
+ scenario: Scenario
3710
+ sequence: Float
3711
+ skip: Boolean
3712
+ task: String
3713
+ updatedAt: Timestamp
3714
+ updater: User
3715
+ }
3716
+
3717
+ type StepList {
3718
+ items: [Step!]!
3719
+ total: Int!
3720
+ }
3721
+
3722
+ input StepPatch {
3723
+ connection: String
3724
+ cuFlag: String
3725
+ description: String
3726
+ id: ID
3727
+ log: Boolean
3728
+ name: String
3729
+ params: String
3730
+ sequence: Int
3731
+ skip: Boolean
3732
+ task: String
3733
+ }
3734
+
3735
+ type Subscription {
3736
+ activityApproval: ActivityApproval!
3737
+ activityInstance: ActivityInstance!
3738
+ activityThread: ActivityThread!
3739
+ board(id: String!): Board!
3740
+ connectionLog(level: String): Log!
3741
+ connectionState(name: String): ConnectionState!
3742
+ data(tag: String!): Data!
3743
+ dataOoc: DataOoc!
3744
+ notification(subjects: [String!]): Notification!
3745
+ playGroup(id: String!): PlayGroup!
3746
+ scenarioInstanceLog(instanceName: String, level: String, scenarioName: String): Log!
3747
+ scenarioInstanceState(instanceName: String, scenarioName: String): ScenarioInstanceState!
3748
+ scenarioQueueState: ScenarioQueueState!
3749
+ }
3750
+
3751
+ type TaskType {
3752
+ connectorFree: Boolean
3753
+ description: String
3754
+ help: String
3755
+ name: String!
3756
+ parameterSpec: [PropertySpec!]
3757
+ }
3758
+
3759
+ type TaskTypeList {
3760
+ items: [TaskType!]!
3761
+ total: Int!
3762
+ }
3763
+
3764
+ """Entity for Terminology"""
3765
+ type Terminology {
3766
+ category: String!
3767
+ createdAt: Timestamp
3768
+ description: String
3769
+ display: String!
3770
+ domain: Domain
3771
+ id: ID!
3772
+ locale: String!
3773
+ name: String!
3774
+ updatedAt: Timestamp
3775
+ }
3776
+
3777
+ type TerminologyList {
3778
+ items: [Terminology!]!
3779
+ total: Int!
3780
+ }
3781
+
3782
+ input TerminologyPatch {
3783
+ category: String!
3784
+ cuFlag: String
3785
+ description: String
3786
+ display: String!
3787
+ id: ID
3788
+ locale: String!
3789
+ name: String
3790
+ }
3791
+
3792
+ """
3793
+ The javascript `Date` as integer. Type represents date and time as number of milliseconds from start of UNIX epoch.
3794
+ """
3795
+ scalar Timestamp
3796
+
3797
+ """The `Upload` scalar type represents a file upload."""
3798
+ scalar Upload
3799
+
3800
+ type UploadURL {
3801
+ fields: Any!
3802
+ url: String!
3803
+ }
3804
+
3805
+ type User {
3806
+ createdAt: Timestamp
3807
+ creator: User
3808
+ description: String
3809
+ domains: [Domain!]!
3810
+ email: String!
3811
+ id: ID!
3812
+ locale: String
3813
+ name: String!
3814
+ owner: Boolean
3815
+ reference: String
3816
+ roles: [Role!]!
3817
+ status: String!
3818
+ updatedAt: Timestamp
3819
+ updater: User
3820
+ userType: String
3821
+ }
3822
+
3823
+ type UserList {
3824
+ items: [User!]
3825
+ total: Int
3826
+ }
3827
+
3828
+ input UserPatch {
3829
+ cuFlag: String
3830
+ description: String
3831
+ domains: [ObjectRef!]
3832
+ email: String
3833
+ id: ID
3834
+ name: String
3835
+ password: String
3836
+ roles: [ObjectRef!]
3837
+ status: String
3838
+ userType: String
3839
+ }
3840
+
3841
+ type UserRole {
3842
+ assigned: Boolean
3843
+ description: String
3844
+ id: String
3845
+ name: String
3846
+ }
3847
+
3848
+ type WorkDateWorkShiftPair {
3849
+ workDate: String!
3850
+ workShift: String!
3851
+ }
3852
+
3853
+ """Entity for WorkShift"""
3854
+ type WorkShift {
3855
+ createdAt: Timestamp
3856
+ creator: User
3857
+ description: String
3858
+ domain: Domain
3859
+ fromDate: Float
3860
+ fromTime: String
3861
+ id: ID!
3862
+ name: String!
3863
+ toDate: Float
3864
+ toTime: String
3865
+ updatedAt: Timestamp
3866
+ updater: User
3867
+ }
3868
+
3869
+ type WorkShiftList {
3870
+ items: [WorkShift!]!
3871
+ total: Int!
3872
+ }
3873
+
3874
+ input WorkShiftPatch {
3875
+ description: String
3876
+ fromDate: Float!
3877
+ fromTime: String!
3878
+ name: String!
3879
+ toDate: Float!
3880
+ toTime: String!
3881
+ }