@operato/scene-timer 1.2.49 → 1.2.62

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,2668 +0,0 @@
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 posting scenario based on the schedule of the given scenario"""
1364
- startScenarioSchedule(scenarioId: String!): Scenario!
1365
-
1366
- """To start new scenario instance"""
1367
- stopScenario(instanceName: String): ScenarioInstance
1368
-
1369
- """To stop posting scenario based on the schedule of the given scenario"""
1370
- stopScenarioSchedule(scenarioId: String!): Scenario
1371
-
1372
- """
1373
- To synchronize privilege master from graphql directives. Only superuser is permitted.
1374
- """
1375
- synchronizePrivilegeMaster(privilege: NewPrivilege!): Boolean!
1376
- terminateContract(partnerName: String!): Boolean!
1377
-
1378
- """To transfer owner of domain"""
1379
- transferOwner(email: String!): Boolean!
1380
- updateAppliance(id: String!, patch: AppliancePatch!): Appliance!
1381
- updateApplication(id: String!, patch: ApplicationPatch!): Application!
1382
- updateAttachment(id: String!, patch: AttachmentPatch!): Attachment!
1383
-
1384
- """To modify Board information"""
1385
- updateBoard(id: String!, patch: BoardPatch!): Board!
1386
-
1387
- """To modify CommonCode information"""
1388
- updateCommonCode(name: String!, patch: CommonCodePatch!): CommonCode!
1389
-
1390
- """To modify CommonCodeDetail information"""
1391
- updateCommonCodeDetail(id: String!, patch: CommonCodeDetailPatch!): CommonCodeDetail!
1392
-
1393
- """To modify connection information"""
1394
- updateConnection(name: String!, patch: ConnectionPatch!): Connection!
1395
-
1396
- """To update domain (Only superuser is granted this privilege.)"""
1397
- updateDomain(name: String!, patch: DomainPatch!): Domain!
1398
-
1399
- """To update multiple domains"""
1400
- updateDomains(patches: [DomainPatch!]!): Boolean!
1401
-
1402
- """To modify Entity' information"""
1403
- updateEntity(id: String!, patch: EntityPatch!): Entity!
1404
-
1405
- """To modify EntityColumn information"""
1406
- updateEntityColumn(id: String!, patch: EntityColumnPatch!): EntityColumn!
1407
-
1408
- """To modify Font information"""
1409
- updateFont(id: String!, patch: FontPatch!): Font!
1410
-
1411
- """To modify Group information"""
1412
- updateGroup(id: String!, patch: GroupPatch!): Group!
1413
-
1414
- """To modify Menu information"""
1415
- updateMenu(id: String!, patch: MenuPatch!): Menu!
1416
-
1417
- """To modify MenuButton information"""
1418
- updateMenuButton(id: String!, patch: MenuButtonPatch!): MenuButton!
1419
-
1420
- """To modify MenuColumn information"""
1421
- updateMenuColumn(id: String!, patch: MenuColumnPatch!): MenuColumn!
1422
-
1423
- """To modify MenuDetail information"""
1424
- updateMenuDetail(id: String!, patch: MenuDetailPatch!): MenuDetail!
1425
-
1426
- """To modify MenuDetailButton information"""
1427
- updateMenuDetailButton(id: String!, patch: MenuDetailButtonPatch!): MenuDetailButton!
1428
-
1429
- """To modify MenuDetailColumn information"""
1430
- updateMenuDetailColumn(id: String!, patch: MenuDetailColumnPatch!): MenuDetailColumn!
1431
-
1432
- """To modify multiple CommonCodes' information"""
1433
- updateMultipleCommonCode(patches: [CommonCodePatch!]!): [CommonCode!]!
1434
-
1435
- """To modify multiple CommonCodeDetails' information"""
1436
- updateMultipleCommonCodeDetail(patches: [CommonCodeDetailPatch!]!): [CommonCodeDetail!]!
1437
-
1438
- """To modify multiple connections' information"""
1439
- updateMultipleConnection(patches: [ConnectionPatch!]!): [Connection!]!
1440
-
1441
- """To modify multiple Entitys' information"""
1442
- updateMultipleEntity(patches: [EntityPatch!]!): [Entity!]!
1443
-
1444
- """To modify multiple Entitys' information"""
1445
- updateMultipleEntityColumn(patches: [EntityColumnPatch!]!): [EntityColumn!]!
1446
-
1447
- """To modify multiple Menus' information"""
1448
- updateMultipleMenu(patches: [MenuPatch!]!): [Menu!]!
1449
-
1450
- """To modify multiple PartnerSettings' information"""
1451
- updateMultiplePartnerSetting(patches: [PartnerSettingPatch!]!): [PartnerSetting!]!
1452
-
1453
- """To modify multiple PayloadLogs' information"""
1454
- updateMultiplePayloadLog(patches: [PayloadLogPatch!]!): [PayloadLog!]!
1455
-
1456
- """To modify multiple scenarios' information"""
1457
- updateMultipleScenario(patches: [ScenarioPatch!]!): [Scenario!]!
1458
-
1459
- """To modify multiple Settings' information"""
1460
- updateMultipleSetting(patches: [SettingPatch!]!): [Setting!]!
1461
-
1462
- """To modify multiple steps' in a scenario"""
1463
- updateMultipleStep(patches: [StepPatch!]!, scenarioId: String!): [Step!]!
1464
-
1465
- """To modify multiple Terminologies' information"""
1466
- updateMultipleTerminologies(patches: [TerminologyPatch!]!): [Terminology!]!
1467
-
1468
- """To modify multiple users information"""
1469
- updateMultipleUser(patches: [UserPatch!]!): [User!]!
1470
-
1471
- """To modify Oauth2Client information"""
1472
- updateOauth2Client(id: String!, patch: Oauth2ClientPatch!): Oauth2Client!
1473
-
1474
- """To modify PayloadLog information"""
1475
- updatePayloadLog(id: String!, patch: PayloadLogPatch!): PayloadLog!
1476
-
1477
- """To modify PlayGroup information"""
1478
- updatePlayGroup(id: String!, patch: PlayGroupPatch!): PlayGroup!
1479
-
1480
- """To modify privilege information"""
1481
- updatePrivilege(category: String!, name: String!, patch: PrivilegePatch!): Privilege!
1482
-
1483
- """To modify role information"""
1484
- updateRole(id: String!, patch: RolePatch!): Role!
1485
-
1486
- """To update role Menu"""
1487
- updateRoleMenu(isCheckedMenu: Boolean!, roleId: String!, targetMenuId: String!): Menu!
1488
-
1489
- """To update role Menu"""
1490
- updateRoleMenus(isCheckedAll: Boolean!, parentMenuId: String!, roleId: String!): [Menu!]!
1491
-
1492
- """To modify scenario information"""
1493
- updateScenario(name: String!, patch: ScenarioPatch!): Scenario!
1494
-
1495
- """To modify Setting information"""
1496
- updateSetting(name: String!, patch: SettingPatch!): Setting!
1497
-
1498
- """To modify Terminology information"""
1499
- updateTerminology(id: String!, patch: TerminologyPatch!): Terminology!
1500
-
1501
- """To modify user information"""
1502
- updateUser(email: String!, patch: UserPatch!): User!
1503
-
1504
- """To update roles for a user"""
1505
- updateUserRoles(availableRoles: [ObjectRef!]!, selectedRoles: [ObjectRef!]!, userId: String!): User!
1506
- }
1507
-
1508
- input NewAppliance {
1509
- brand: String!
1510
- description: String
1511
- model: String!
1512
- name: String!
1513
- netmask: String
1514
- serialNo: String!
1515
- }
1516
-
1517
- input NewApplication {
1518
- description: String
1519
- email: String
1520
- icon: String
1521
- name: String!
1522
- redirectUrl: String
1523
- type: ApplicationType
1524
- url: String
1525
- webhook: String
1526
- }
1527
-
1528
- input NewAttachment {
1529
- category: String
1530
- description: String
1531
- file: Upload!
1532
- refBy: String
1533
- refType: String
1534
- }
1535
-
1536
- input NewBoard {
1537
- description: String
1538
- groupId: String
1539
- model: String!
1540
- name: String!
1541
- thumbnail: String
1542
- }
1543
-
1544
- input NewCommonCode {
1545
- description: String
1546
- details: [String!]
1547
- name: String!
1548
- }
1549
-
1550
- input NewCommonCodeDetail {
1551
- commonCode: ObjectRef!
1552
- description: String
1553
- name: String!
1554
- rank: Float!
1555
- }
1556
-
1557
- input NewConnection {
1558
- description: String
1559
- endpoint: String
1560
- name: String!
1561
- params: String
1562
- type: String
1563
- }
1564
-
1565
- input NewEntity {
1566
- active: Boolean
1567
- association: String
1568
- bundle: String!
1569
- columns: [String!]
1570
- dataProp: String
1571
- delStrategy: String
1572
- description: String
1573
- extEntity: Boolean
1574
- fixedColumns: Int
1575
- idField: String
1576
- idType: String
1577
- master: String
1578
- multiSaveUrl: String
1579
- name: String!
1580
- refField: String
1581
- searchUrl: String
1582
- tableName: String!
1583
- titleField: String
1584
- }
1585
-
1586
- input NewEntityColumn {
1587
- colSize: Float
1588
- colType: String!
1589
- defVal: String
1590
- description: String
1591
- entity: ObjectRef!
1592
- formEditor: String
1593
- formFormat: String
1594
- formValidator: String
1595
- gridAlign: String
1596
- gridEditor: String
1597
- gridFormat: String
1598
- gridRank: Int
1599
- gridValidator: String
1600
- gridWidth: Int
1601
- ignoreOnSav: Boolean
1602
- name: String!
1603
- nullable: Boolean
1604
- rangeVal: String
1605
- rank: Float
1606
- refName: String
1607
- refParams: String
1608
- refRelated: String
1609
- refType: String
1610
- refUrl: String
1611
- reverseSort: Boolean
1612
- searchEditor: String
1613
- searchInitVal: String
1614
- searchName: String
1615
- searchOper: String
1616
- searchRank: Int
1617
- sortRank: Int
1618
- term: String
1619
- uniqRank: Int
1620
- virtualField: Boolean
1621
- }
1622
-
1623
- input NewFavorite {
1624
- routing: String!
1625
- }
1626
-
1627
- input NewFont {
1628
- active: Boolean
1629
- files: [Upload!]
1630
- name: String!
1631
- path: String
1632
- provider: String
1633
- uri: String
1634
- }
1635
-
1636
- input NewGroup {
1637
- description: String
1638
- name: String!
1639
- }
1640
-
1641
- input NewMenu {
1642
- buttons: [ObjectRef!]
1643
- category: String
1644
- children: [ObjectRef!]
1645
- columns: [ObjectRef!]
1646
- description: String
1647
- detailFormId: String
1648
- detailLayout: String
1649
- fixedColumns: Int
1650
- gridSaveUrl: String
1651
- hiddenFlag: Boolean
1652
- iconPath: String
1653
- idField: String
1654
- itemsProp: String
1655
- menuType: String!
1656
- name: String!
1657
- pagination: Boolean
1658
- parent: ObjectRef
1659
- rank: Int
1660
- resourceId: String
1661
- resourceName: String
1662
- resourceType: String
1663
- resourceUrl: String
1664
- role: ObjectRef
1665
- routing: String
1666
- routingType: String
1667
- template: String
1668
- titleField: String
1669
- totalProp: String
1670
- }
1671
-
1672
- input NewMenuButton {
1673
- auth: String
1674
- icon: String
1675
- logic: String
1676
- menu: String!
1677
- rank: Int
1678
- style: String
1679
- text: String!
1680
- }
1681
-
1682
- input NewMenuColumn {
1683
- colSize: Int
1684
- colType: String!
1685
- defVal: String
1686
- description: String
1687
- extField: Boolean
1688
- formEditor: String
1689
- formFormat: String
1690
- formValidator: String
1691
- gridAlign: String
1692
- gridEditor: String
1693
- gridFormat: String
1694
- gridRank: Int
1695
- gridValidator: String
1696
- gridWidth: Int
1697
- ignoreOnSave: Boolean
1698
- menu: String!
1699
- name: String!
1700
- nullable: Boolean
1701
- rangeVal: String
1702
- rank: Int
1703
- refName: String
1704
- refParams: String
1705
- refRelated: String
1706
- refType: String
1707
- refUrl: String
1708
- reverseSort: Boolean
1709
- searchEditor: String
1710
- searchInitVal: String
1711
- searchName: String
1712
- searchOper: String
1713
- searchRank: Int
1714
- sortRank: Int
1715
- term: String
1716
- uniqRank: Int
1717
- virtualField: Boolean
1718
- }
1719
-
1720
- input NewMenuDetail {
1721
- association: String
1722
- buttons: [String!]
1723
- columns: [String!]
1724
- customView: String
1725
- dataProp: String
1726
- entityId: String
1727
- masterField: String
1728
- menu: String!
1729
- name: String!
1730
- saveUrl: String
1731
- searchUrl: String
1732
- viewSection: String!
1733
- }
1734
-
1735
- input NewMenuDetailButton {
1736
- icon: String
1737
- logic: String
1738
- menuDetail: String!
1739
- rank: Int
1740
- style: String
1741
- text: String!
1742
- }
1743
-
1744
- input NewMenuDetailColumn {
1745
- colSize: Int
1746
- colType: String
1747
- defVal: String
1748
- description: String
1749
- extField: Boolean
1750
- formEditor: String
1751
- formFormat: String
1752
- formValidator: String
1753
- gridAlign: String
1754
- gridEditor: String
1755
- gridFormat: String
1756
- gridRank: Int
1757
- gridValidator: String
1758
- gridWidth: Int
1759
- ignoreOnSave: Boolean
1760
- menuDetail: String
1761
- name: String
1762
- nullable: Boolean
1763
- rangeVal: String
1764
- rank: Int
1765
- refName: String
1766
- refParams: String
1767
- refRelated: String
1768
- refType: String
1769
- refUrl: String
1770
- reverseSort: Boolean
1771
- searchEditor: String
1772
- searchInitVal: String
1773
- searchName: String
1774
- searchOper: String
1775
- searchRank: Int
1776
- sortRank: Int
1777
- term: String
1778
- uniqRank: Int
1779
- virtualField: Boolean
1780
- }
1781
-
1782
- input NewOauth2Client {
1783
- accessToken: String
1784
- accessTokenUrl: String
1785
- authUrl: String
1786
- callbackUrl: String
1787
- clientId: String
1788
- clientSecret: String
1789
- codeChallengeMethod: String
1790
- codeVerifier: String
1791
- description: String
1792
- grantType: String
1793
- icon: String
1794
- jwtToken: String
1795
- name: String!
1796
- password: String
1797
- refreshToken: String
1798
- scopes: String
1799
- username: String
1800
- webhook: String
1801
- }
1802
-
1803
- input NewPayloadLog {
1804
- description: String
1805
- name: String!
1806
- }
1807
-
1808
- input NewPlayGroup {
1809
- description: String
1810
- name: String!
1811
- }
1812
-
1813
- input NewPrivilege {
1814
- category: String!
1815
- description: String
1816
- name: String!
1817
- roles: [ObjectRef!]
1818
- }
1819
-
1820
- input NewRole {
1821
- description: String
1822
- name: String!
1823
- privileges: [ObjectRef!]
1824
- users: [ObjectRef!]
1825
- }
1826
-
1827
- input NewScenario {
1828
- active: Boolean
1829
- description: String
1830
- name: String!
1831
- schedule: String
1832
- timezone: String
1833
- type: String
1834
- }
1835
-
1836
- input NewSetting {
1837
- category: String!
1838
- description: String
1839
- name: String!
1840
- value: String
1841
- }
1842
-
1843
- input NewTerminology {
1844
- category: String!
1845
- description: String
1846
- display: String!
1847
- locale: String!
1848
- name: String!
1849
- }
1850
-
1851
- input NewUser {
1852
- description: String
1853
- email: String!
1854
- name: String!
1855
- password: String
1856
- roles: [ObjectRef!]
1857
- userType: String
1858
- }
1859
-
1860
- input NewUserByDomainWizardInput {
1861
- email: String!
1862
- isInvitee: Boolean
1863
- name: String!
1864
- owner: Boolean!
1865
- password: String
1866
- roles: [NewRole!]!
1867
- }
1868
-
1869
- type Notification {
1870
- body: String!
1871
- domain: Domain
1872
- image: String
1873
- property: Any
1874
- subject: String
1875
- timestamp: Date
1876
- title: String!
1877
- type: String
1878
- url: String
1879
- }
1880
-
1881
- """Entity for Oauth2Client"""
1882
- type Oauth2Client {
1883
- accessToken: String
1884
- accessTokenUrl: String
1885
- authUrl: String
1886
- callbackUrl: String
1887
- clientId: String
1888
- clientSecret: String
1889
- codeChallengeMethod: String
1890
- codeVerifier: String
1891
- createdAt: Timestamp
1892
- creator: User
1893
- description: String
1894
- domain: Domain
1895
- expires: Timestamp
1896
- grantType: String
1897
- icon: String
1898
- id: ID!
1899
- jwtToken: String
1900
- name: String!
1901
- password: String
1902
- refreshToken: String
1903
- scopes: String
1904
- state: String
1905
- tokenType: String
1906
- updatedAt: Timestamp
1907
- updater: User
1908
- username: String
1909
- webhook: String
1910
- }
1911
-
1912
- type Oauth2ClientList {
1913
- items: [Oauth2Client!]!
1914
- total: Int!
1915
- }
1916
-
1917
- input Oauth2ClientPatch {
1918
- accessToken: String
1919
- accessTokenUrl: String
1920
- authUrl: String
1921
- callbackUrl: String
1922
- clientId: String
1923
- clientSecret: String
1924
- codeChallengeMethod: String
1925
- codeVerifier: String
1926
- description: String
1927
- grantType: String
1928
- icon: String
1929
- jwtToken: String
1930
- name: String
1931
- password: String
1932
- refreshToken: String
1933
- scopes: String
1934
- username: String
1935
- webhook: String
1936
- }
1937
-
1938
- """Can be anything"""
1939
- scalar Object
1940
-
1941
- input ObjectRef {
1942
- """Field description"""
1943
- description: String
1944
-
1945
- """Field id"""
1946
- id: ID!
1947
-
1948
- """Field name"""
1949
- name: String
1950
- }
1951
-
1952
- input Pagination {
1953
- limit: Int
1954
- page: Int
1955
- }
1956
-
1957
- type Partner {
1958
- approvedAt: Timestamp!
1959
- approver: User
1960
- domain: Domain!
1961
- id: ID!
1962
- partnerDomain: Domain!
1963
- requestedAt: Timestamp!
1964
- requester: User
1965
- }
1966
-
1967
- type PartnerList {
1968
- items: [Partner!]
1969
- total: Int
1970
- }
1971
-
1972
- """Entity for PartnerSetting"""
1973
- type PartnerSetting {
1974
- category: String
1975
- createdAt: Timestamp
1976
- creator: User
1977
- description: String
1978
- domain: Domain
1979
- id: ID!
1980
- name: String
1981
- partnerDomain: Domain
1982
- partnerDomainId: String
1983
- setting: Setting
1984
- settingId: String
1985
- updatedAt: Timestamp
1986
- updater: User
1987
- value: String
1988
- }
1989
-
1990
- type PartnerSettingList {
1991
- items: [PartnerSetting!]!
1992
- total: Int!
1993
- }
1994
-
1995
- input PartnerSettingPatch {
1996
- cuFlag: String!
1997
- id: ID
1998
- partnerDomain: ObjectRef
1999
- setting: ObjectRef
2000
- value: String
2001
- }
2002
-
2003
- """Entity for PayloadLog"""
2004
- type PayloadLog {
2005
- createdAt: Timestamp
2006
- creator: User
2007
- domain: Domain
2008
- endpoint: String!
2009
- id: ID!
2010
- name: String!
2011
- request: String!
2012
- response: String!
2013
- src: String
2014
- type: String!
2015
- updatedAt: Timestamp
2016
- updater: User
2017
- }
2018
-
2019
- type PayloadLogList {
2020
- items: [PayloadLog!]!
2021
- total: Int!
2022
- }
2023
-
2024
- input PayloadLogPatch {
2025
- cuFlag: String!
2026
- description: String
2027
- id: ID
2028
- name: String
2029
- }
2030
-
2031
- type PendingObject {
2032
- due: String!
2033
- priority: Int!
2034
- stuff: Object!
2035
- tag: String
2036
- }
2037
-
2038
- """Entity for Board PlayGroup"""
2039
- type PlayGroup {
2040
- boards: [Board!]
2041
- createdAt: Timestamp
2042
- creator: User
2043
- description: String
2044
- domain: Domain
2045
- id: ID!
2046
- name: String!
2047
- updatedAt: Timestamp
2048
- updater: User
2049
- }
2050
-
2051
- type PlayGroupList {
2052
- items: [PlayGroup!]!
2053
- total: Int!
2054
- }
2055
-
2056
- input PlayGroupPatch {
2057
- description: String
2058
- name: String
2059
- }
2060
-
2061
- type Privilege {
2062
- category: String
2063
- createdAt: Timestamp
2064
- creator: User
2065
- description: String
2066
- id: ID!
2067
- name: String!
2068
- roles: [Role!]
2069
- updatedAt: Timestamp
2070
- updater: User
2071
- }
2072
-
2073
- type PrivilegeList {
2074
- items: [Privilege!]
2075
- total: Int
2076
- }
2077
-
2078
- input PrivilegePatch {
2079
- category: String
2080
- description: String
2081
- id: String
2082
- name: String
2083
- roles: [ObjectRef!]
2084
- }
2085
-
2086
- type PropertySpec {
2087
- label: String!
2088
- name: String!
2089
- placeholder: String
2090
- property: Object
2091
- type: String!
2092
- }
2093
-
2094
- type Query {
2095
- appBinding(id: String!): AppBinding!
2096
- appBindings(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): AppBindingList!
2097
-
2098
- """ To fetch appliance"""
2099
- appliance(id: String!): Appliance!
2100
-
2101
- """To fetch multiple appliance"""
2102
- appliances(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ApplianceList!
2103
-
2104
- """To fetch application"""
2105
- application(id: String!): Application!
2106
-
2107
- """To fetch multiple application"""
2108
- applications(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ApplicationList!
2109
- attachment(id: String!): Attachment!
2110
- attachments(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): AttachmentList!
2111
-
2112
- """To fetch a board"""
2113
- board(id: String!): Board!
2114
-
2115
- """Board Usage Permissions"""
2116
- boardPermissions: [String!]!
2117
-
2118
- """To fetch multiple Boards"""
2119
- boards(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): BoardList!
2120
-
2121
- """To fetch Boards created by me"""
2122
- boardsCreatedByMe(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): BoardList!
2123
-
2124
- """To check if system would provide default password to create new user"""
2125
- checkDefaultPassword: Boolean!
2126
-
2127
- """To check if system would provide default password to create new user"""
2128
- checkResettablePasswordToDefault: Boolean!
2129
-
2130
- """To fetch the preset of role for new user"""
2131
- checkRolePreset: [Role!]!
2132
-
2133
- """To check if current user is belongs to current domain"""
2134
- checkUserBelongsDomain: Boolean!
2135
-
2136
- """..."""
2137
- checkUserExistence(email: String!): Boolean!
2138
-
2139
- """To fetch a CommonCode"""
2140
- commonCode(name: String!): CommonCode
2141
-
2142
- """To fetch a CommonCodeDetail"""
2143
- commonCodeDetail(id: String!): CommonCodeDetail!
2144
-
2145
- """To fetch multiple CommonCodeDetails"""
2146
- commonCodeDetails(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): CommonCodeDetailList!
2147
-
2148
- """To fetch multiple CommonCodes"""
2149
- commonCodes(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): CommonCodeList!
2150
-
2151
- """To fetch a connector"""
2152
- connection(name: String!): ConnectorType!
2153
-
2154
- """To fetch multiple connections"""
2155
- connections(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ConnectionList!
2156
-
2157
- """To fetch the connector from a connection"""
2158
- connectorByConnection(connectionName: String!): ConnectorType!
2159
-
2160
- """To fetch multiple connector"""
2161
- connectors: ConnectorList!
2162
- customers: [Domain!]!
2163
-
2164
- """To fetch domain"""
2165
- domain(id: String!): Domain!
2166
-
2167
- """To fetch all domains (Only superuser is granted this privilege.)"""
2168
- domains(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): DomainList!
2169
-
2170
- """To fetch multiple Entities"""
2171
- entities(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): EntityList!
2172
-
2173
- """To fetch a Entity"""
2174
- entity(id: String!): Entity!
2175
-
2176
- """To fetch a EntityColumn"""
2177
- entityColumn(id: String!): EntityColumn!
2178
-
2179
- """To fetch multiple EntityColumns"""
2180
- entityColumns(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): EntityColumnList!
2181
-
2182
- """To fetch a EntityMetadata"""
2183
- entityMetadata(name: String!): EntityMetadata!
2184
-
2185
- """To fetch a Favorite"""
2186
- favorite(id: String!): Favorite!
2187
-
2188
- """To fetch multiple BoardFavorites"""
2189
- favoriteBoards(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): BoardFavoriteList!
2190
-
2191
- """To fetch multiple Favorites"""
2192
- favorites(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): FavoriteList!
2193
-
2194
- """To fetch the state of a connection"""
2195
- fetchConnectionState(name: String!): ConnectionState!
2196
-
2197
- """To fetch a Font"""
2198
- font(id: String!): Font!
2199
-
2200
- """To fetch multiple Fonts"""
2201
- fonts(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): FontList!
2202
-
2203
- """To fetch a Global Board Model"""
2204
- globalBoardByName(name: String!): Board
2205
- grantedRoles: [GrantedRole!]!
2206
- grantingRoles(customerId: String!): [GrantedRole!]!
2207
-
2208
- """To fetch a Group"""
2209
- group(id: String!): Group
2210
-
2211
- """To fetch multiple Groups"""
2212
- groups(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): GroupList!
2213
-
2214
- """To query whether I have the given permission"""
2215
- hasPrivilege(category: String!, name: String!): Boolean!
2216
- invitation(email: String!, reference: String!, type: String!): Invitation!
2217
- invitations(reference: String!, type: String!): InvitationList!
2218
-
2219
- """To fetch a Menu"""
2220
- menu(id: String!): Menu!
2221
-
2222
- """To fetch a MenuButton"""
2223
- menuButton(id: String!): MenuButton!
2224
-
2225
- """To fetch multiple MenuButtons"""
2226
- menuButtons(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): MenuButtonList!
2227
-
2228
- """To fetch a Menu by routing"""
2229
- menuByRouting(routing: String!): Menu!
2230
-
2231
- """To fetch a MenuColumn"""
2232
- menuColumn(id: String!): MenuColumn!
2233
-
2234
- """To fetch multiple MenuColumns"""
2235
- menuColumns(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): MenuColumnList!
2236
-
2237
- """To fetch a MenuDetail"""
2238
- menuDetail(id: String!): MenuDetail!
2239
-
2240
- """To fetch a MenuDetailButton"""
2241
- menuDetailButton(id: String!): MenuDetailButton!
2242
-
2243
- """To fetch multiple MenuDetailButtons"""
2244
- menuDetailButtons(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): MenuDetailButtonList!
2245
-
2246
- """To fetch a MenuDetailColumn"""
2247
- menuDetailColumn(id: String!): MenuDetailColumn!
2248
-
2249
- """To fetch multiple MenuDetailColumns"""
2250
- menuDetailColumns(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): MenuDetailColumnList!
2251
-
2252
- """To fetch multiple MenuDetails"""
2253
- menuDetails(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): MenuDetailList!
2254
-
2255
- """To fetch multiple Menus"""
2256
- menus(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): MenuList!
2257
-
2258
- """To fetch current user's Favorites"""
2259
- myFavorites: [Favorite!]!
2260
- myLoginHistories(limit: Float!): [LoginHistory!]!
2261
-
2262
- """To fetch roles of current user"""
2263
- myRoles: [Role!]!
2264
-
2265
- """To fetch a Oauth2Client"""
2266
- oauth2Client(id: String!): Oauth2Client
2267
-
2268
- """To fetch multiple Oauth2Clients"""
2269
- oauth2Clients(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): Oauth2ClientList!
2270
-
2271
- """To fetch specific domain's CommonCodes by given name"""
2272
- partnerCommonCode(name: String!, partnerDomainId: String!): CommonCode!
2273
-
2274
- """To fetch a PartnerSetting"""
2275
- partnerSetting(name: String!, partnerDomainId: String!): PartnerSetting!
2276
-
2277
- """To fetch multiple PartnerSettings"""
2278
- partnerSettings(filters: [Filter!]!, pagination: Pagination!, partnerDomain: ObjectRef!, sortings: [Sorting!]!): PartnerSettingList!
2279
- partners(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): PartnerList!
2280
-
2281
- """To fetch a PayloadLog"""
2282
- payloadLog(id: String!): PayloadLog!
2283
-
2284
- """To fetch multiple PayloadLogs"""
2285
- payloadLogs(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): PayloadLogList!
2286
-
2287
- """To fetch a PlayGroup"""
2288
- playGroup(id: String!): PlayGroup
2289
-
2290
- """To fetch multiple PlayGroups"""
2291
- playGroups(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): PlayGroupList!
2292
-
2293
- """To fetch privilege"""
2294
- privilege(category: String!, name: String!): Privilege!
2295
-
2296
- """To fetch multiple privileges"""
2297
- privileges(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): PrivilegeList!
2298
-
2299
- """To fetch role"""
2300
- role(name: String!): Role!
2301
-
2302
- """To fetch Menus by role"""
2303
- roleMenus(roleId: String!): MenuList!
2304
-
2305
- """To fetch priviliges of a role"""
2306
- rolePrivileges(roleId: String!): [RolePrivilege!]!
2307
-
2308
- """To fetch multiple users"""
2309
- roles(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): RoleList!
2310
-
2311
- """To fetch a scenario"""
2312
- scenario(id: String!): Scenario!
2313
-
2314
- """To fetch a scenario instance"""
2315
- scenarioInstance(instanceName: String!): ScenarioInstance!
2316
-
2317
- """To fetch multiple scenario instances"""
2318
- scenarioInstances(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ScenarioInstanceList!
2319
-
2320
- """To fetch multiple scenarios"""
2321
- scenarios(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ScenarioList!
2322
- searchCustomers(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): DomainList!
2323
-
2324
- """To fetch a Setting"""
2325
- setting(name: String!, partnerDomainId: String): Setting!
2326
-
2327
- """To fetch multiple Settings"""
2328
- settings(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): SettingList!
2329
-
2330
- """To fetch a step"""
2331
- step(name: String!): Step!
2332
-
2333
- """To fetch multiple steps"""
2334
- steps(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): StepList!
2335
-
2336
- """To fetch a task-type"""
2337
- taskType(name: String!): TaskType!
2338
-
2339
- """To fetch multiple task-type"""
2340
- taskTypes: TaskTypeList!
2341
-
2342
- """To fetch the connector from a task-type"""
2343
- taskTypesByConnection(connectionName: String!): TaskTypeList!
2344
-
2345
- """To fetch multiple Terminologies"""
2346
- terminologies(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): TerminologyList!
2347
-
2348
- """To fetch a Terminology"""
2349
- terminology(id: String!): Terminology!
2350
-
2351
- """To fetch user"""
2352
- user(email: String!): User!
2353
-
2354
- """To fetch Menus by role"""
2355
- userMenus: [Menu!]!
2356
-
2357
- """To fetch roles of a user"""
2358
- userRoles(userId: String!): [UserRole!]!
2359
-
2360
- """To fetch multiple users"""
2361
- users(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): UserList!
2362
- vendors: [Domain!]!
2363
- }
2364
-
2365
- type Role {
2366
- createdAt: Timestamp
2367
- creator: User
2368
- description: String
2369
- domain: Domain!
2370
- id: ID!
2371
- name: String!
2372
- privileges: [Privilege!]
2373
- updatedAt: Timestamp
2374
- updater: User
2375
- users: [User!]
2376
- }
2377
-
2378
- type RoleList {
2379
- items: [Role!]
2380
- total: Int
2381
- }
2382
-
2383
- input RolePatch {
2384
- cuFlag: String
2385
- description: String
2386
- id: String
2387
- name: String
2388
- privileges: [ObjectRef!]
2389
- users: [ObjectRef!]
2390
- }
2391
-
2392
- type RolePrivilege {
2393
- assigned: Boolean
2394
- category: String
2395
- description: String
2396
- id: String
2397
- name: String
2398
- }
2399
-
2400
- type Scenario {
2401
- active: Boolean
2402
- createdAt: Timestamp
2403
- creator: User
2404
- description: String
2405
- domain: Domain
2406
- id: ID!
2407
- instances: [ScenarioInstance!]
2408
- name: String!
2409
- schedule: String
2410
- scheduleId: String
2411
- state: String
2412
- steps: [Step!]
2413
- timezone: String
2414
- type: String
2415
- updatedAt: Timestamp
2416
- updater: User
2417
- }
2418
-
2419
- type ScenarioInstance {
2420
- data: Object
2421
- domain: Domain
2422
- instanceName: String
2423
- message: String
2424
- progress: ScenarioInstanceProgress
2425
- root: ScenarioInstance
2426
- scenarioName: String
2427
- state: String
2428
- timestamp: Timestamp
2429
- variables: Object
2430
- }
2431
-
2432
- type ScenarioInstanceList {
2433
- items: [ScenarioInstance!]!
2434
- total: Int!
2435
- }
2436
-
2437
- type ScenarioInstanceProgress {
2438
- rate: Int!
2439
- rounds: Int!
2440
- step: Int!
2441
- steps: Int!
2442
- }
2443
-
2444
- type ScenarioInstanceState {
2445
- data: Object
2446
- domain: Domain
2447
- instanceName: String
2448
- message: String
2449
- progress: ScenarioInstanceProgress
2450
- scenarioName: String
2451
- state: ScenarioInstanceStatus
2452
- timestamp: Timestamp
2453
- variables: Object
2454
- }
2455
-
2456
- """state enumeration of a scenario-instance"""
2457
- enum ScenarioInstanceStatus {
2458
- HALTED
2459
- READY
2460
- STARTED
2461
- STOPPED
2462
- UNLOADED
2463
- }
2464
-
2465
- type ScenarioList {
2466
- items: [Scenario!]!
2467
- total: Int!
2468
- }
2469
-
2470
- input ScenarioPatch {
2471
- active: Boolean
2472
- cuFlag: String
2473
- description: String
2474
- id: ID
2475
- name: String
2476
- schedule: String
2477
- steps: [StepPatch!]
2478
- timezone: String
2479
- type: String
2480
- }
2481
-
2482
- type ScenarioQueueState {
2483
- domain: Domain!
2484
- queue: [PendingObject!]!
2485
- }
2486
-
2487
- """Entity for Setting"""
2488
- type Setting {
2489
- category: String!
2490
- createdAt: Timestamp
2491
- creator: User
2492
- description: String
2493
- domain: Domain
2494
- id: ID!
2495
- name: String!
2496
- updatedAt: Timestamp
2497
- updater: User
2498
- value: String
2499
- }
2500
-
2501
- type SettingList {
2502
- items: [Setting!]!
2503
- total: Int!
2504
- }
2505
-
2506
- input SettingPatch {
2507
- category: String
2508
- cuFlag: String
2509
- description: String
2510
- id: ID
2511
- name: String
2512
- value: String
2513
- }
2514
-
2515
- input Sorting {
2516
- """
2517
- Set to true if descending sort. Default is "false"
2518
- """
2519
- desc: Boolean
2520
-
2521
- """Field name to sort by"""
2522
- name: String!
2523
- }
2524
-
2525
- type Step {
2526
- connection: String
2527
- createdAt: Timestamp
2528
- creator: User
2529
- description: String
2530
- domain: Domain
2531
- id: ID!
2532
- log: Boolean
2533
- name: String!
2534
- params: String
2535
- scenario: Scenario
2536
- sequence: Float
2537
- skip: Boolean
2538
- task: String
2539
- updatedAt: Timestamp
2540
- updater: User
2541
- }
2542
-
2543
- type StepList {
2544
- items: [Step!]!
2545
- total: Int!
2546
- }
2547
-
2548
- input StepPatch {
2549
- connection: String
2550
- cuFlag: String
2551
- description: String
2552
- id: ID
2553
- log: Boolean
2554
- name: String
2555
- params: String
2556
- sequence: Int
2557
- skip: Boolean
2558
- task: String
2559
- }
2560
-
2561
- type Subscription {
2562
- board(id: String!): Board!
2563
- connectionLog(level: String): Log!
2564
- connectionState(name: String): ConnectionState!
2565
- data(tag: String!): Data!
2566
- notification(subjects: [String!]): Notification!
2567
- playGroup(id: String!): PlayGroup!
2568
- scenarioInstanceLog(instanceName: String, level: String, scenarioName: String): Log!
2569
- scenarioInstanceState(instanceName: String, scenarioName: String): ScenarioInstanceState!
2570
- scenarioQueueState: ScenarioQueueState!
2571
- }
2572
-
2573
- type TaskType {
2574
- connectorFree: Boolean
2575
- description: String
2576
- help: String
2577
- name: String!
2578
- parameterSpec: [PropertySpec!]
2579
- }
2580
-
2581
- type TaskTypeList {
2582
- items: [TaskType!]!
2583
- total: Int!
2584
- }
2585
-
2586
- """Entity for Terminology"""
2587
- type Terminology {
2588
- category: String!
2589
- createdAt: Timestamp
2590
- description: String
2591
- display: String!
2592
- domain: Domain
2593
- id: ID!
2594
- locale: String!
2595
- name: String!
2596
- updatedAt: Timestamp
2597
- }
2598
-
2599
- type TerminologyList {
2600
- items: [Terminology!]!
2601
- total: Int!
2602
- }
2603
-
2604
- input TerminologyPatch {
2605
- category: String!
2606
- cuFlag: String
2607
- description: String
2608
- display: String!
2609
- id: ID
2610
- locale: String!
2611
- name: String
2612
- }
2613
-
2614
- """
2615
- The javascript `Date` as integer. Type represents date and time as number of milliseconds from start of UNIX epoch.
2616
- """
2617
- scalar Timestamp
2618
-
2619
- """The `Upload` scalar type represents a file upload."""
2620
- scalar Upload
2621
-
2622
- type UploadURL {
2623
- fields: Any!
2624
- url: String!
2625
- }
2626
-
2627
- type User {
2628
- createdAt: Timestamp
2629
- creator: User
2630
- description: String
2631
- domains: [Domain!]!
2632
- email: String!
2633
- id: ID!
2634
- locale: String
2635
- name: String!
2636
- owner: Boolean
2637
- reference: String
2638
- roles: [Role!]!
2639
- status: String!
2640
- updatedAt: Timestamp
2641
- updater: User
2642
- userType: String
2643
- }
2644
-
2645
- type UserList {
2646
- items: [User!]
2647
- total: Int
2648
- }
2649
-
2650
- input UserPatch {
2651
- cuFlag: String
2652
- description: String
2653
- domains: [ObjectRef!]
2654
- email: String
2655
- id: ID
2656
- name: String
2657
- password: String
2658
- roles: [ObjectRef!]
2659
- status: String
2660
- userType: String
2661
- }
2662
-
2663
- type UserRole {
2664
- assigned: Boolean
2665
- description: String
2666
- id: String
2667
- name: String
2668
- }