@operato/scene-label 2.0.0-alpha.0 → 2.0.0-alpha.4

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