@operato/scene-scichart 2.0.0-beta.0

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