@operato/scene-scichart 7.3.10 → 7.3.19

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