@operato/scene-grist 1.2.87 → 1.2.90

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