@operato/scene-google-map 1.3.6

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