@operato/scene-wheel-sorter 1.2.49 → 1.2.50

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