@operato/scene-visualizer 1.2.66 → 1.2.76

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