@operato/scene-wellstek-gantt 7.3.0

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