@operato/scene-visualizer 1.2.53 → 1.2.57

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