@operato/scene-integration 7.3.9 → 7.3.19

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