@things-factory/operato-fleet 6.1.66 → 6.1.68

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