@operato/scene-visualizer 1.2.88 → 1.2.90

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