@operato/scene-chartjs 1.2.4 → 1.2.27

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