@operato/scene-tab 1.2.66 → 1.2.76

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