@things-factory/operato-edge 7.0.0-alpha.18

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