@things-factory/operato-ecs 6.1.194 → 6.1.196

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