@operato/scene-grist 1.3.14 → 2.0.0-alpha.11

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