@things-factory/operato-fleet 7.0.1-alpha.85 → 7.0.1-alpha.86

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