@operato/scene-manufacturing 1.3.1 → 1.3.4

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