@dssp/dcsp 0.0.2

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