@operato/scene-chartjs 7.3.17 → 7.3.19

Sign up to get free protection for your applications and to get access to all the features.
package/schema.graphql DELETED
@@ -1,4537 +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
- rank: Float
1169
- resourceId: String
1170
- resourceName: String
1171
- resourceType: String
1172
- resourceUrl: String
1173
- role: Role
1174
- roles: [Role!]
1175
- routing: String
1176
- routingType: String
1177
- template: String
1178
- titleField: String
1179
- totalProp: String
1180
- updatedAt: DateTimeISO
1181
- updater: User
1182
- }
1183
-
1184
- """Entity for MenuButton"""
1185
- type MenuButton {
1186
- auth: String
1187
- createdAt: DateTimeISO
1188
- creator: User
1189
- domain: Domain!
1190
- icon: String
1191
- id: ID!
1192
- logic: String
1193
- menu: Menu
1194
- rank: Float
1195
- style: String
1196
- text: String
1197
- updatedAt: DateTimeISO
1198
- updater: User
1199
- }
1200
-
1201
- type MenuButtonList {
1202
- items: [MenuButton!]!
1203
- total: Int!
1204
- }
1205
-
1206
- input MenuButtonPatch {
1207
- auth: String
1208
- icon: String
1209
- logic: String
1210
- menu: String
1211
- rank: Int
1212
- style: String
1213
- text: String
1214
- }
1215
-
1216
- """Entity for MenuColumn"""
1217
- type MenuColumn {
1218
- colSize: Float
1219
- colType: String
1220
- createdAt: DateTimeISO
1221
- creator: User
1222
- defVal: String
1223
- description: String
1224
- domain: Domain!
1225
- extField: Boolean
1226
- formEditor: String
1227
- formFormat: String
1228
- formValidator: String
1229
- gridAlign: String
1230
- gridEditor: String
1231
- gridFormat: String
1232
- gridRank: Float
1233
- gridValidator: String
1234
- gridWidth: Float
1235
- id: ID!
1236
- ignoreOnSave: Boolean
1237
- menu: Menu
1238
- name: String!
1239
- nullable: Boolean
1240
- rangeVal: String
1241
- rank: Float
1242
- refName: String
1243
- refParams: String
1244
- refRelated: String
1245
- refType: String
1246
- refUrl: String
1247
- reverseSort: Boolean
1248
- searchEditor: String
1249
- searchInitVal: String
1250
- searchName: String
1251
- searchOper: String
1252
- searchRank: Float
1253
- sortRank: Float
1254
- term: String
1255
- uniqRank: Float
1256
- updatedAt: DateTimeISO
1257
- updater: User
1258
- virtualField: Boolean
1259
- }
1260
-
1261
- type MenuColumnList {
1262
- items: [MenuColumn!]!
1263
- total: Int!
1264
- }
1265
-
1266
- input MenuColumnPatch {
1267
- colSize: Int
1268
- colType: String
1269
- defVal: String
1270
- description: String
1271
- extField: Boolean
1272
- formEditor: String
1273
- formFormat: String
1274
- formValidator: String
1275
- gridAlign: String
1276
- gridEditor: String
1277
- gridFormat: String
1278
- gridRank: Int
1279
- gridValidator: String
1280
- gridWidth: Int
1281
- ignoreOnSave: Boolean
1282
- menu: String
1283
- name: String
1284
- nullable: Boolean
1285
- rangeVal: String
1286
- rank: Int
1287
- refName: String
1288
- refParams: String
1289
- refRelated: String
1290
- refType: String
1291
- refUrl: String
1292
- reverseSort: Boolean
1293
- searchEditor: String
1294
- searchInitVal: String
1295
- searchName: String
1296
- searchOper: String
1297
- searchRank: Int
1298
- sortRank: Int
1299
- term: String
1300
- uniqRank: Int
1301
- virtualField: Boolean
1302
- }
1303
-
1304
- """Entity for MenuDetail"""
1305
- type MenuDetail {
1306
- association: String
1307
- buttons: [MenuDetailButton!]
1308
- columns: [MenuDetailColumn!]
1309
- createdAt: DateTimeISO
1310
- creator: User
1311
- customView: String
1312
- dataProp: String
1313
- domain: Domain!
1314
- entityId: String
1315
- id: ID!
1316
- masterField: String
1317
- menu: Menu
1318
- name: String!
1319
- saveUrl: String
1320
- searchUrl: String
1321
- updatedAt: DateTimeISO
1322
- updater: User
1323
- viewSection: String
1324
- }
1325
-
1326
- """Entity for MenuDetailButton"""
1327
- type MenuDetailButton {
1328
- createdAt: DateTimeISO
1329
- creator: User
1330
- domain: Domain!
1331
- icon: String
1332
- id: ID!
1333
- logic: String
1334
- menuDetail: MenuDetail
1335
- rank: Float
1336
- style: String
1337
- text: String
1338
- updatedAt: DateTimeISO
1339
- updater: User
1340
- }
1341
-
1342
- type MenuDetailButtonList {
1343
- items: [MenuDetailButton!]!
1344
- total: Int!
1345
- }
1346
-
1347
- input MenuDetailButtonPatch {
1348
- icon: String
1349
- logic: String
1350
- menuDetail: String
1351
- rank: Int
1352
- style: String
1353
- text: String
1354
- }
1355
-
1356
- """Entity for MenuDetailColumn"""
1357
- type MenuDetailColumn {
1358
- colSize: Float
1359
- colType: String
1360
- createdAt: DateTimeISO
1361
- creator: User
1362
- defVal: String
1363
- description: String
1364
- domain: Domain!
1365
- extField: Boolean
1366
- formEditor: String
1367
- formFormat: String
1368
- formValidator: String
1369
- gridAlign: String
1370
- gridEditor: String
1371
- gridFormat: String
1372
- gridRank: Float
1373
- gridValidator: String
1374
- gridWidth: Float
1375
- id: ID!
1376
- ignoreOnSave: Boolean
1377
- menuDetail: MenuDetail
1378
- name: String
1379
- nullable: Boolean
1380
- rangeVal: String
1381
- rank: Float
1382
- refName: String
1383
- refParams: String
1384
- refRelated: String
1385
- refType: String
1386
- refUrl: String
1387
- reverseSort: Boolean
1388
- searchEditor: String
1389
- searchInitVal: String
1390
- searchName: String
1391
- searchOper: String
1392
- searchRank: Float
1393
- sortRank: Float
1394
- term: String
1395
- uniqRank: Float
1396
- updatedAt: DateTimeISO
1397
- updater: User
1398
- virtualField: Boolean
1399
- }
1400
-
1401
- type MenuDetailColumnList {
1402
- items: [MenuDetailColumn!]!
1403
- total: Int!
1404
- }
1405
-
1406
- input MenuDetailColumnPatch {
1407
- colSize: Int
1408
- colType: String!
1409
- defVal: String
1410
- description: String
1411
- extField: Boolean
1412
- formEditor: String
1413
- formFormat: String
1414
- formValidator: String
1415
- gridAlign: String
1416
- gridEditor: String
1417
- gridFormat: String
1418
- gridRank: Int
1419
- gridValidator: String
1420
- gridWidth: Int
1421
- ignoreOnSave: Boolean
1422
- menuDetail: String!
1423
- name: String!
1424
- nullable: Boolean
1425
- rangeVal: String
1426
- rank: Int
1427
- refName: String
1428
- refParams: String
1429
- refRelated: String
1430
- refType: String
1431
- refUrl: String
1432
- reverseSort: Boolean
1433
- searchEditor: String
1434
- searchInitVal: String
1435
- searchName: String
1436
- searchOper: String
1437
- searchRank: Int
1438
- sortRank: Int
1439
- term: String
1440
- uniqRank: Int
1441
- virtualField: Boolean
1442
- }
1443
-
1444
- type MenuDetailList {
1445
- items: [MenuDetail!]!
1446
- total: Int!
1447
- }
1448
-
1449
- input MenuDetailPatch {
1450
- association: String
1451
- buttons: [String!]
1452
- columns: [String!]
1453
- customView: String
1454
- dataProp: String
1455
- entityId: String
1456
- masterField: String
1457
- menu: String
1458
- name: String
1459
- saveUrl: String
1460
- searchUrl: String
1461
- viewSection: String
1462
- }
1463
-
1464
- type MenuList {
1465
- items: [Menu!]!
1466
- total: Int!
1467
- }
1468
-
1469
- input MenuPatch {
1470
- buttons: [ObjectRef!]
1471
- category: String
1472
- children: [ObjectRef!]
1473
- columns: [ObjectRef!]
1474
- cuFlag: String
1475
- description: String
1476
- detailFormId: String
1477
- detailLayout: String
1478
- fixedColumns: Int
1479
- gridSaveUrl: String
1480
- hiddenFlag: Boolean
1481
- iconPath: String
1482
- id: ID
1483
- idField: String
1484
- itemsProp: String
1485
- menuType: String
1486
- name: String
1487
- pagination: Boolean
1488
- parent: ObjectRef
1489
- rank: Int
1490
- resourceId: String
1491
- resourceName: String
1492
- resourceType: String
1493
- resourceUrl: String
1494
- role: ObjectRef
1495
- routing: String
1496
- routingType: String
1497
- template: String
1498
- titleField: String
1499
- totalProp: String
1500
- }
1501
-
1502
- type Mutation {
1503
- """To activate user"""
1504
- activateUser(userId: String!): Boolean!
1505
-
1506
- """
1507
- Attaches an existing contact to an employee. The contact is identified by its ID and the employee is identified by their ID.
1508
- """
1509
- attachContact(contactId: String!, id: String!): Employee!
1510
- cancelInvitation(email: EmailAddress!, reference: String!, type: String!): Boolean!
1511
-
1512
- """To clear translations cache"""
1513
- clearTranslationsCache: Boolean!
1514
-
1515
- """To clone a Board from existing Board"""
1516
- cloneBoard(id: String!, patch: BoardPatch!, targetGroupId: String, targetSubdomain: String!): Board!
1517
-
1518
- """To connect a connection"""
1519
- connectConnection(name: String!): Connection!
1520
-
1521
- """To import multiple scenarios"""
1522
- copyScenarios(ids: [String!]!): [Scenario!]!
1523
-
1524
- """To create new appliance"""
1525
- createAppliance(appliance: NewAppliance!): Appliance!
1526
-
1527
- """To create new application"""
1528
- createApplication(application: NewApplication!): Application!
1529
-
1530
- """To create new ApprovalLine"""
1531
- createApprovalLine(approvalLine: NewApprovalLine!): ApprovalLine!
1532
- createAttachment(attachment: NewAttachment!): Attachment!
1533
- createAttachments(attachments: [NewAttachment!]!): [Attachment!]!
1534
-
1535
- """To create new AttributeSet"""
1536
- createAttributeSet(attribute: NewAttributeSet!): AttributeSet!
1537
-
1538
- """To create new AuthProvider"""
1539
- createAuthProvider(authProvider: NewAuthProvider!): AuthProvider!
1540
-
1541
- """To create new Board"""
1542
- createBoard(board: NewBoard!): Board!
1543
-
1544
- """To create new BoardTemplate"""
1545
- createBoardTemplate(boardTemplate: NewBoardTemplate!): BoardTemplate!
1546
-
1547
- """To create new CommonCode"""
1548
- createCommonCode(commonCode: NewCommonCode!): CommonCode!
1549
-
1550
- """To create new CommonCodeDetail"""
1551
- createCommonCodeDetail(commonCodeDetail: NewCommonCodeDetail!): CommonCodeDetail!
1552
-
1553
- """To create new connection"""
1554
- createConnection(connection: NewConnection!): Connection!
1555
-
1556
- """To create new Contact"""
1557
- createContact(contact: NewContact!): Contact!
1558
-
1559
- """To create new Department"""
1560
- createDepartment(department: NewDepartment!): Department!
1561
-
1562
- """To create domain (Only superuser is granted this privilege.)"""
1563
- createDomain(domainInput: DomainPatch!): Domain!
1564
-
1565
- """
1566
- 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.
1567
- """
1568
- createEmployee(employee: NewEmployee!): Employee!
1569
-
1570
- """To create new Entity"""
1571
- createEntity(entity: NewEntity!): Entity!
1572
-
1573
- """To create new EntityColumn"""
1574
- createEntityColumn(entityColumn: NewEntityColumn!): EntityColumn!
1575
-
1576
- """To create new Favorite"""
1577
- createFavorite(favorite: NewFavorite!): Favorite!
1578
-
1579
- """To create new Font"""
1580
- createFont(font: NewFont!): Font!
1581
-
1582
- """To create new Group"""
1583
- createGroup(group: NewGroup!): Group
1584
-
1585
- """To create new Menu"""
1586
- createMenu(menu: NewMenu!): Menu!
1587
-
1588
- """To create new MenuButton"""
1589
- createMenuButton(menuButton: NewMenuButton!): MenuButton!
1590
-
1591
- """To create new MenuColumn"""
1592
- createMenuColumn(menuColumn: NewMenuColumn!): MenuColumn!
1593
-
1594
- """To create new MenuDetail"""
1595
- createMenuDetail(menuDetail: NewMenuDetail!): MenuDetail!
1596
-
1597
- """To create new MenuDetailButton"""
1598
- createMenuDetailButton(menuDetailButton: NewMenuDetailButton!): MenuDetailButton!
1599
-
1600
- """To create new MenuDetailColumn"""
1601
- createMenuDetailColumn(menuDetailColumn: NewMenuDetailColumn!): MenuDetailColumn!
1602
-
1603
- """To create new ApprovalLine for current user"""
1604
- createMyApprovalLine(approvalLine: NewApprovalLine!): ApprovalLine!
1605
-
1606
- """To create my new PagePreference"""
1607
- createMyPagePreference(pagePreference: NewPagePreference!): PagePreference!
1608
-
1609
- """To create new Notification"""
1610
- createNotification(notification: NewNotification!): Notification!
1611
-
1612
- """To create new NotificationRule"""
1613
- createNotificationRule(notificationRule: NewNotificationRule!): NotificationRule!
1614
-
1615
- """To create new Oauth2Client"""
1616
- createOauth2Client(oauth2Client: NewOauth2Client!): Oauth2Client!
1617
-
1618
- """To create new PDFRelease"""
1619
- createPDFRelease(pdfRelease: NewPDFRelease!): PDFRelease!
1620
-
1621
- """To create new PDFTemplate"""
1622
- createPDFTemplate(pdfTemplate: NewPDFTemplate!): PDFTemplate!
1623
-
1624
- """To create new PayloadLog"""
1625
- createPayloadLog(payloadLog: NewPayloadLog!): PayloadLog!
1626
-
1627
- """To create new PlayGroup"""
1628
- createPlayGroup(playGroup: NewPlayGroup!): PlayGroup!
1629
-
1630
- """To create new PrinterDevice"""
1631
- createPrinterDevice(printerDevice: NewPrinterDevice!): PrinterDevice!
1632
-
1633
- """To create new privilege"""
1634
- createPrivilege(privilege: NewPrivilege!): Privilege!
1635
-
1636
- """To create new user"""
1637
- createRole(role: NewRole!): User!
1638
-
1639
- """To create new scenario"""
1640
- createScenario(scenario: NewScenario!): Scenario!
1641
-
1642
- """To create new Setting"""
1643
- createSetting(setting: NewSetting!): Setting!
1644
-
1645
- """To create new StateRegister"""
1646
- createStateRegister(stateRegister: NewStateRegister!): StateRegister!
1647
-
1648
- """To create new Terminology"""
1649
- createTerminology(terminology: NewTerminology!): Terminology!
1650
-
1651
- """To create new Theme"""
1652
- createTheme(theme: NewTheme!): Theme!
1653
-
1654
- """To create new user"""
1655
- createUser(user: NewUser!): User!
1656
-
1657
- """To create new UserPreference"""
1658
- createUserPreference(preference: NewUserPreference!): UserPreference!
1659
- deleteAppBinding(id: String!): Boolean!
1660
-
1661
- """To delete appliance"""
1662
- deleteAppliance(id: String!): Boolean!
1663
-
1664
- """To delete application"""
1665
- deleteApplication(id: String!): Boolean!
1666
-
1667
- """To delete ApprovalLine"""
1668
- deleteApprovalLine(id: String!): Boolean!
1669
-
1670
- """To delete multiple ApprovalLines"""
1671
- deleteApprovalLines(ids: [String!]!): Boolean!
1672
- deleteAttachment(id: String!): Boolean!
1673
- deleteAttachmentsByRef(refBys: [String!]!, refType: String): Boolean!
1674
-
1675
- """To delete AttributeSet"""
1676
- deleteAttributeSet(id: String!): Boolean!
1677
-
1678
- """To delete multiple AttributeSets"""
1679
- deleteAttributeSets(ids: [String!]!): Boolean!
1680
-
1681
- """To delete AuthProvider"""
1682
- deleteAuthProvider(id: String!): Boolean!
1683
- deleteAuthProviders(ids: [String!]!): Boolean!
1684
-
1685
- """To delete Board"""
1686
- deleteBoard(id: String!): Boolean!
1687
-
1688
- """To delete BoardTemplate"""
1689
- deleteBoardTemplate(id: String!): Boolean!
1690
-
1691
- """To delete CommonCode"""
1692
- deleteCommonCode(id: String!): Boolean!
1693
-
1694
- """To delete CommonCodeDetail"""
1695
- deleteCommonCodeDetail(id: String!): Boolean!
1696
-
1697
- """To delete multiple CommonCodeDetails"""
1698
- deleteCommonCodeDetails(ids: [String!]!): Boolean!
1699
-
1700
- """To delete multiple CommonCodes"""
1701
- deleteCommonCodes(ids: [String!]!): Boolean!
1702
-
1703
- """To delete connection"""
1704
- deleteConnection(name: String!): Boolean!
1705
-
1706
- """To delete multiple connections"""
1707
- deleteConnections(names: [String!]!): Boolean!
1708
-
1709
- """To delete Contact"""
1710
- deleteContact(id: String!): Boolean!
1711
-
1712
- """To delete multiple Contacts"""
1713
- deleteContacts(ids: [String!]!): Boolean!
1714
-
1715
- """To delete Department"""
1716
- deleteDepartment(id: String!): Boolean!
1717
-
1718
- """To delete multiple Departments"""
1719
- deleteDepartments(ids: [String!]!): Boolean!
1720
-
1721
- """To delete domain (Only superuser is granted this privilege.)"""
1722
- deleteDomain(name: String!): Domain!
1723
-
1724
- """To delete domain user"""
1725
- deleteDomainUser(email: EmailAddress!): Boolean!
1726
-
1727
- """To delete multiple domains (Only superuser is granted this privilege.)"""
1728
- deleteDomains(names: [String!]!): Boolean!
1729
-
1730
- """
1731
- Deletes an employee record identified by the given ID. Also deletes any attachments associated with the employee.
1732
- """
1733
- deleteEmployee(id: String!): Boolean!
1734
-
1735
- """
1736
- Deletes multiple employee records identified by the given IDs. Also deletes any attachments associated with each employee.
1737
- """
1738
- deleteEmployees(ids: [String!]!): Boolean!
1739
-
1740
- """To delete multiple Entities"""
1741
- deleteEntities(ids: [String!]!): Boolean!
1742
-
1743
- """To delete Entity"""
1744
- deleteEntity(id: String!): Boolean!
1745
-
1746
- """To delete EntityColumn"""
1747
- deleteEntityColumn(id: String!): Boolean!
1748
-
1749
- """To delete multiple EntityColumns"""
1750
- deleteEntityColumns(ids: [String!]!): Boolean!
1751
-
1752
- """To delete Favorite"""
1753
- deleteFavorite(routing: String!): Boolean!
1754
-
1755
- """To delete Font"""
1756
- deleteFont(id: String!): Boolean!
1757
-
1758
- """To delete Group"""
1759
- deleteGroup(id: String!): Boolean!
1760
-
1761
- """To delete Menu"""
1762
- deleteMenu(id: String!): Boolean!
1763
-
1764
- """To delete MenuButton"""
1765
- deleteMenuButton(id: String!): Boolean!
1766
-
1767
- """To delete multiple MenuButtons"""
1768
- deleteMenuButtons(ids: [String!]!): Boolean!
1769
-
1770
- """To delete MenuColumn"""
1771
- deleteMenuColumn(id: String!): Boolean!
1772
-
1773
- """To delete multiple MenuColumns"""
1774
- deleteMenuColumns(ids: [String!]!): Boolean!
1775
-
1776
- """To delete MenuDetail"""
1777
- deleteMenuDetail(id: String!): Boolean!
1778
-
1779
- """To delete MenuDetailButton"""
1780
- deleteMenuDetailButton(id: String!): Boolean!
1781
-
1782
- """To delete multiple MenuDetailButtons"""
1783
- deleteMenuDetailButtons(ids: [String!]!): Boolean!
1784
-
1785
- """To delete MenuDetailColumn"""
1786
- deleteMenuDetailColumn(id: String!): Boolean!
1787
-
1788
- """To delete multiple MenuDetailColumns"""
1789
- deleteMenuDetailColumns(ids: [String!]!): Boolean!
1790
-
1791
- """To delete multiple MenuDetails"""
1792
- deleteMenuDetails(ids: [String!]!): Boolean!
1793
-
1794
- """To delete multiple Menus"""
1795
- deleteMenus(ids: [String!]!): Boolean!
1796
-
1797
- """To delete ApprovalLine for current user"""
1798
- deleteMyApprovalLine(id: String!): Boolean!
1799
-
1800
- """To delete multiple ApprovalLines for current user"""
1801
- deleteMyApprovalLines(ids: [String!]!): Boolean!
1802
-
1803
- """To delete my PagePreference"""
1804
- deleteMyPagePreference(element: String!, page: String!): Boolean!
1805
-
1806
- """To delete my preference"""
1807
- deleteMyUserPreference(element: String!, key: String!): Boolean!
1808
-
1809
- """To delete Notification"""
1810
- deleteNotification(id: String!): Boolean!
1811
-
1812
- """To delete NotificationRule"""
1813
- deleteNotificationRule(id: String!): Boolean!
1814
-
1815
- """To delete multiple NotificationRules"""
1816
- deleteNotificationRules(ids: [String!]!): Boolean!
1817
-
1818
- """To delete multiple Notificationes"""
1819
- deleteNotificationes(ids: [String!]!): Boolean!
1820
-
1821
- """To delete Oauth2Client"""
1822
- deleteOauth2Client(id: String!): Boolean!
1823
-
1824
- """To delete multiple Oauth2Clients"""
1825
- deleteOauth2Clients(ids: [String!]!): Boolean!
1826
-
1827
- """To delete PDFRelease"""
1828
- deletePDFRelease(id: String!): Boolean!
1829
-
1830
- """To delete multiple PDFReleases"""
1831
- deletePDFReleases(ids: [String!]!): Boolean!
1832
-
1833
- """To delete PDFTemplate"""
1834
- deletePDFTemplate(id: String!): Boolean!
1835
-
1836
- """To delete multiple PDFTemplates"""
1837
- deletePDFTemplates(ids: [String!]!): Boolean!
1838
-
1839
- """To delete PagePreference"""
1840
- deletePagePreference(id: String!): Boolean!
1841
-
1842
- """To delete multiple PagePreferences"""
1843
- deletePagePreferences(ids: [String!]!): Boolean!
1844
-
1845
- """To delete multiple partnerSettings"""
1846
- deletePartnerSettings(ids: [String!]!): Boolean!
1847
-
1848
- """To delete PayloadLog"""
1849
- deletePayloadLog(id: String!): Boolean!
1850
-
1851
- """To delete multiple payloadLogs"""
1852
- deletePayloadLogs(ids: [String!]!): Boolean!
1853
-
1854
- """To delete PlayGroup"""
1855
- deletePlayGroup(id: String!): Boolean!
1856
-
1857
- """To delete PrinterDevice"""
1858
- deletePrinterDevice(id: String!): Boolean!
1859
-
1860
- """To delete multiple printerDevices"""
1861
- deletePrinterDevices(ids: [String!]!): Boolean!
1862
-
1863
- """To delete privilege"""
1864
- deletePrivilege(category: String!, name: String!): Boolean!
1865
-
1866
- """To delete role"""
1867
- deleteRole(id: String!): Boolean!
1868
-
1869
- """To delete multiple roles"""
1870
- deleteRoles(ids: [String!]!): Boolean!
1871
-
1872
- """To delete scenario"""
1873
- deleteScenario(name: String!): Boolean!
1874
-
1875
- """To delete multiple scenarios"""
1876
- deleteScenarios(ids: [String!]!): Boolean!
1877
-
1878
- """To delete Setting"""
1879
- deleteSetting(name: String!): Boolean!
1880
-
1881
- """To delete multiple settings"""
1882
- deleteSettings(names: [String!]!): Boolean!
1883
-
1884
- """To delete StateRegister"""
1885
- deleteStateRegister(id: String!): Boolean!
1886
-
1887
- """To delete multiple StateRegisters"""
1888
- deleteStateRegisters(ids: [String!]!): Boolean!
1889
-
1890
- """To delete multiple steps"""
1891
- deleteSteps(ids: [String!]!): Boolean!
1892
-
1893
- """To delete multiple Terminologies"""
1894
- deleteTerminologies(ids: [String!]!): Boolean!
1895
-
1896
- """To delete Terminology"""
1897
- deleteTerminology(id: String!): Boolean!
1898
-
1899
- """To delete Theme"""
1900
- deleteTheme(id: String!): Boolean!
1901
-
1902
- """To delete multiple Themes"""
1903
- deleteThemes(ids: [String!]!): Boolean!
1904
-
1905
- """To delete a user"""
1906
- deleteUser(email: EmailAddress!): Boolean!
1907
-
1908
- """To delete UserPreference"""
1909
- deleteUserPreference(id: String!): Boolean!
1910
-
1911
- """To delete multiple UserPreferences"""
1912
- deleteUserPreferences(ids: [String!]!): Boolean!
1913
-
1914
- """To delete some users"""
1915
- deleteUsers(emails: [String!]!): Boolean!
1916
-
1917
- """
1918
- Detaches an existing contact from an employee. The employee is identified by their ID.
1919
- """
1920
- detachContact(id: String!): Employee!
1921
-
1922
- """To disconnect a connection"""
1923
- disconnectConnection(name: String!): Connection!
1924
- domainRegister(domainInput: DomainGeneratorInput!): Domain!
1925
- domainUserRoleRegister(newDomainInfo: DomainUserRoleInput!): Domain!
1926
- generateApplianceSecret(id: String!): Appliance!
1927
- generateApplicationSecret(id: String!): Application!
1928
- generateUploadURL(type: String!): UploadURL!
1929
-
1930
- """To get oauth2 auth URL"""
1931
- getOauth2AuthUrl(id: String!): String!
1932
- grantRoles(customerId: String!, roles: [RolePatch!]!): Boolean!
1933
-
1934
- """To import multiple ApprovalLines"""
1935
- importApprovalLines(approvalLines: [ApprovalLinePatch!]!): Boolean!
1936
-
1937
- """To import some Attachments"""
1938
- importAttachments(file: Upload!): [Attachment!]!
1939
-
1940
- """To import multiple AttributeSets"""
1941
- importAttributeSets(attributes: [AttributeSetPatch!]!): Boolean!
1942
-
1943
- """To import some Boards"""
1944
- importBoards(files: [Upload!]!, groupId: String!, overwrite: Boolean!): [Board!]!
1945
-
1946
- """To import multiple CommonCodeDetails"""
1947
- importCommonCodeDetails(commonCodeDetails: [CommonCodeDetailPatch!]!): Boolean!
1948
-
1949
- """To import multiple CommonCodes"""
1950
- importCommonCodes(commonCodes: [CommonCodePatch!]!): Boolean!
1951
-
1952
- """To import multiple connections"""
1953
- importConnections(connections: [ConnectionPatch!]!): Boolean!
1954
-
1955
- """To import multiple Contacts"""
1956
- importContacts(contacts: [ContactPatch!]!): Boolean!
1957
-
1958
- """To import multiple Departments"""
1959
- importDepartments(departments: [DepartmentPatch!]!): Boolean!
1960
-
1961
- """
1962
- Imports multiple employee records into the system. Each employee record must be provided in the EmployeePatch format.
1963
- """
1964
- importEmployees(employees: [EmployeePatch!]!): Boolean!
1965
-
1966
- """To import multiple MenuButtons"""
1967
- importMenuButtons(menuButtons: [MenuButtonPatch!]!): Boolean!
1968
-
1969
- """To import multiple MenuColumns"""
1970
- importMenuColumns(menuColumns: [MenuColumnPatch!]!): Boolean!
1971
-
1972
- """To import multiple MenuDetailButtons"""
1973
- importMenuDetailButtons(menuDetailButtons: [MenuDetailButtonPatch!]!): Boolean!
1974
-
1975
- """To import multiple MenuDetailColumns"""
1976
- importMenuDetailColumns(menuDetailColumns: [MenuDetailColumnPatch!]!): Boolean!
1977
-
1978
- """To import multiple MenuDetails"""
1979
- importMenuDetails(menuDetails: [MenuDetailPatch!]!): Boolean!
1980
-
1981
- """To import multiple Menus"""
1982
- importMenus(menus: [MenuPatch!]!): Boolean!
1983
-
1984
- """To import multiple NotificationRules"""
1985
- importNotificationRules(notificationRules: [NotificationRulePatch!]!): Boolean!
1986
-
1987
- """To import multiple Oauth2Clients"""
1988
- importOauth2Clients(oauth2Clients: [Oauth2ClientPatch!]!): Boolean!
1989
-
1990
- """To import multiple PDFReleases"""
1991
- importPDFReleases(pdfReleases: [PDFReleasePatch!]!): Boolean!
1992
-
1993
- """To import multiple PDFTemplates"""
1994
- importPDFTemplates(pdfTemplates: [PDFTemplatePatch!]!): Boolean!
1995
-
1996
- """To import multiple scenarios"""
1997
- importScenarios(scenarios: [ScenarioPatch!]!): Boolean!
1998
-
1999
- """To import multiple StateRegisters"""
2000
- importStateRegisters(stateRegisters: [StateRegisterPatch!]!): Boolean!
2001
-
2002
- """To import multiple Terminologies"""
2003
- importTerminologies(terminologies: [TerminologyPatch!]!): Boolean!
2004
-
2005
- """To import multiple Themes"""
2006
- importThemes(themes: [ThemePatch!]!): Boolean!
2007
-
2008
- """To inactivate user"""
2009
- inactivateUser(userId: String!): Boolean!
2010
- inviteCustomer(customerDomainName: String!): Boolean!
2011
-
2012
- """To invite new user"""
2013
- inviteUser(email: EmailAddress!): Boolean!
2014
-
2015
- """To make the board to join the group"""
2016
- joinGroup(boardIds: [String!]!, id: String!): Group!
2017
-
2018
- """To make the board to join the play group"""
2019
- joinPlayGroup(boardIds: [String!]!, id: String!): PlayGroup!
2020
-
2021
- """To make the board to leave from the play group"""
2022
- leavePlayGroup(boardIds: [String!]!, id: String!): PlayGroup!
2023
- multipleUpload(files: [Upload!]!): [Attachment!]!
2024
-
2025
- """To refresh oauth2 access token"""
2026
- refreshOauth2AccessToken(id: String!): Oauth2Client!
2027
-
2028
- """To register a board as a board template with the given ID"""
2029
- registerBoardAsTemplate(
2030
- """description of board template to be regiestered"""
2031
- description: String!
2032
-
2033
- """board Id to be regiestered"""
2034
- id: String!
2035
-
2036
- """name of board template to be regiestered"""
2037
- name: String!
2038
-
2039
- """visibility of board template to be regiestered"""
2040
- visibility: String!
2041
- ): BoardTemplate!
2042
-
2043
- """
2044
- Registers an existing employee as a system user, granting them access to the system. The employee is identified by their ID.
2045
- """
2046
- registerEmployeeAsSystemUser(
2047
- """Employee Id"""
2048
- employeeId: String!
2049
- ): Boolean!
2050
- registerSchedule(schedule: NewSchedule!): ID!
2051
-
2052
- """To release a Board"""
2053
- releaseBoard(id: String!): Board!
2054
- renewApplicationAccessToken(id: String!, scope: String!): AccessToken!
2055
-
2056
- """To modify board order of a PlayGroup"""
2057
- reorderPlayGroup(boardIds: [String!]!, id: String!): PlayGroup!
2058
-
2059
- """To reset password to default"""
2060
- resetPasswordToDefault(userId: String!): Boolean!
2061
-
2062
- """To revert Board version"""
2063
- revertBoardVersion(id: String!, version: Float!): Board!
2064
-
2065
- """
2066
- To run new scenario instance and will return the result after the scenario stop.
2067
- """
2068
- runScenario(instanceName: String, scenarioName: String!, variables: Object): ScenarioInstanceRunResult!
2069
- sendInvitation(email: EmailAddress!, reference: String!, type: String!): Invitation!
2070
- singleUpload(file: Upload!): Attachment!
2071
-
2072
- """To start new scenario instance"""
2073
- startScenario(instanceName: String, scenarioName: String!, variables: Object): ScenarioInstance!
2074
-
2075
- """To start posting scenario based on the schedule of the given scenario"""
2076
- startScenarioSchedule(scenarioId: String!): Scenario!
2077
-
2078
- """To start new scenario instance"""
2079
- stopScenario(instanceName: String): ScenarioInstance
2080
-
2081
- """To stop posting scenario based on the schedule of the given scenario"""
2082
- stopScenarioSchedule(scenarioId: String!): Scenario
2083
-
2084
- """To subscribe azure active directory users"""
2085
- subscribeAzureADUsers: Boolean!
2086
-
2087
- """To subscribe google users"""
2088
- subscribeGoogleUsers: Boolean!
2089
-
2090
- """To synchronize auth-providers users"""
2091
- synchronizeAuthProviderUsers(id: String!): Boolean!
2092
-
2093
- """
2094
- To synchronize privilege master from graphql directives. Only superuser is permitted.
2095
- """
2096
- synchronizePrivilegeMaster(privilege: NewPrivilege!): Boolean!
2097
- terminateContract(partnerName: String!): Boolean!
2098
-
2099
- """To transfer owner of domain"""
2100
- transferOwner(email: EmailAddress!): Boolean!
2101
- unregisterSchedule(handle: ID!): 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
- updateSchedule(schedule: SchedulePatch!): ID!
2306
-
2307
- """To update secure IP list for domain"""
2308
- updateSecureIPList(iplist: Object!): Object
2309
-
2310
- """To modify Setting information"""
2311
- updateSetting(name: String!, patch: SettingPatch!): Setting!
2312
-
2313
- """To modify StateRegister information"""
2314
- updateStateRegister(id: String!, patch: StateRegisterPatch!): StateRegister!
2315
-
2316
- """To update state of StateRegister by name"""
2317
- updateStateRegisterByName(name: String!, state: Object!): StateRegister!
2318
-
2319
- """To modify Terminology information"""
2320
- updateTerminology(id: String!, patch: TerminologyPatch!): Terminology!
2321
-
2322
- """To modify Theme information"""
2323
- updateTheme(id: String!, patch: ThemePatch!): Theme!
2324
-
2325
- """To modify user information"""
2326
- updateUser(email: EmailAddress!, patch: UserPatch!): User!
2327
-
2328
- """To modify UserPreference information"""
2329
- updateUserPreference(id: String!, patch: UserPreferencePatch!): UserPreference!
2330
-
2331
- """To update roles for a user"""
2332
- updateUserRoles(availableRoles: [ObjectRef!]!, selectedRoles: [ObjectRef!]!, userId: String!): User!
2333
- }
2334
-
2335
- input NewAppliance {
2336
- brand: String!
2337
- description: String
2338
- model: String!
2339
- name: String!
2340
- netmask: String
2341
- serialNo: String!
2342
- }
2343
-
2344
- input NewApplication {
2345
- description: String
2346
- email: EmailAddress
2347
- icon: String
2348
- name: String!
2349
- redirectUrl: String
2350
- type: ApplicationType
2351
- url: String
2352
- webhook: String
2353
- }
2354
-
2355
- input NewApprovalLine {
2356
- description: String
2357
- model: Object
2358
- name: String!
2359
- owner: ObjectRefApprovalLineOwnerType!
2360
- ownerType: ApprovalLineOwnerType!
2361
- }
2362
-
2363
- input NewAttachment {
2364
- category: String
2365
- description: String
2366
- file: Upload!
2367
- refBy: String
2368
- refType: String
2369
- tags: Object
2370
- }
2371
-
2372
- input NewAttributeSet {
2373
- active: Boolean
2374
- description: String
2375
- entity: String!
2376
- items: [AttributeSetItemPatch!]
2377
- }
2378
-
2379
- input NewAuthProvider {
2380
- active: Boolean
2381
- clientId: String
2382
- clientSecret: String
2383
- params: Object
2384
- privateKey: String
2385
- tenantId: String
2386
- type: String!
2387
- }
2388
-
2389
- input NewBoard {
2390
- description: String
2391
- groupId: String
2392
- model: String!
2393
- name: String!
2394
- thumbnail: String
2395
- }
2396
-
2397
- input NewBoardTemplate {
2398
- description: String!
2399
- model: String!
2400
- name: String!
2401
- thumbnail: String
2402
- visibility: String!
2403
- }
2404
-
2405
- input NewCommonCode {
2406
- description: String
2407
- details: [String!]
2408
- name: String!
2409
- }
2410
-
2411
- input NewCommonCodeDetail {
2412
- commonCode: ObjectRef!
2413
- description: String
2414
- labels: Object
2415
- name: String!
2416
- rank: Float!
2417
- }
2418
-
2419
- input NewConnection {
2420
- description: String
2421
- edge: ObjectRef
2422
- endpoint: String
2423
- name: String!
2424
- params: String
2425
- type: String
2426
- }
2427
-
2428
- input NewContact {
2429
- address: String
2430
- company: String
2431
- department: String
2432
- email: EmailAddress
2433
- items: [ContactItemPatch!]
2434
- name: String!
2435
- note: String
2436
- phone: String
2437
- profile: ProfileInput
2438
- }
2439
-
2440
- input NewDepartment {
2441
- active: Boolean
2442
- controlNo: String!
2443
- description: String
2444
- extension: String
2445
- manager: ObjectRefForEmployee
2446
- name: String!
2447
- parent: ObjectRef
2448
- picture: Upload
2449
- }
2450
-
2451
- input NewEmployee {
2452
- active: Boolean
2453
- alias: String
2454
- contact: ObjectRefForContact
2455
- controlNo: String!
2456
- department: ObjectRefForDepartment
2457
- extension: String
2458
- hiredOn: String
2459
- jobPosition: String
2460
- jobResponsibility: String
2461
- name: String!
2462
- note: String
2463
- photo: Upload
2464
- retiredAt: String
2465
- supervisor: ObjectRefForEmployee
2466
- type: EmployeeType
2467
- user: ObjectRefForUser
2468
- }
2469
-
2470
- input NewEntity {
2471
- active: Boolean
2472
- association: String
2473
- bundle: String!
2474
- columns: [String!]
2475
- dataProp: String
2476
- delStrategy: String
2477
- description: String
2478
- extEntity: Boolean
2479
- fixedColumns: Int
2480
- idField: String
2481
- idType: String
2482
- master: String
2483
- multiSaveUrl: String
2484
- name: String!
2485
- refField: String
2486
- searchUrl: String
2487
- tableName: String!
2488
- titleField: String
2489
- }
2490
-
2491
- input NewEntityColumn {
2492
- colSize: Float
2493
- colType: String!
2494
- defVal: String
2495
- description: String
2496
- entity: ObjectRef!
2497
- formEditor: String
2498
- formFormat: String
2499
- formValidator: String
2500
- gridAlign: String
2501
- gridEditor: String
2502
- gridFormat: String
2503
- gridRank: Int
2504
- gridValidator: String
2505
- gridWidth: Int
2506
- ignoreOnSav: Boolean
2507
- name: String!
2508
- nullable: Boolean
2509
- rangeVal: String
2510
- rank: Float
2511
- refName: String
2512
- refParams: String
2513
- refRelated: String
2514
- refType: String
2515
- refUrl: String
2516
- reverseSort: Boolean
2517
- searchEditor: String
2518
- searchInitVal: String
2519
- searchName: String
2520
- searchOper: String
2521
- searchRank: Int
2522
- sortRank: Int
2523
- term: String
2524
- uniqRank: Int
2525
- virtualField: Boolean
2526
- }
2527
-
2528
- input NewFavorite {
2529
- routing: String!
2530
- }
2531
-
2532
- input NewFont {
2533
- active: Boolean
2534
- files: [Upload!]
2535
- name: String!
2536
- path: String
2537
- provider: String
2538
- uri: String
2539
- }
2540
-
2541
- input NewGroup {
2542
- description: String
2543
- name: String!
2544
- }
2545
-
2546
- input NewMenu {
2547
- buttons: [ObjectRef!]
2548
- category: String
2549
- children: [ObjectRef!]
2550
- columns: [ObjectRef!]
2551
- description: String
2552
- detailFormId: String
2553
- detailLayout: String
2554
- fixedColumns: Int
2555
- gridSaveUrl: String
2556
- hiddenFlag: Boolean
2557
- iconPath: String
2558
- idField: String
2559
- itemsProp: String
2560
- menuType: String!
2561
- name: String!
2562
- pagination: Boolean
2563
- parent: ObjectRef
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
- role: ObjectRef
2807
- schedule: String
2808
- timezone: String
2809
- ttl: Float
2810
- type: String
2811
- }
2812
-
2813
- input NewSchedule {
2814
- client: ScheduleClientInput!
2815
- name: String!
2816
- schedule: String
2817
- task: ScheduleTaskInput!
2818
- timezone: String
2819
- type: String!
2820
- }
2821
-
2822
- input NewSetting {
2823
- category: String!
2824
- description: String
2825
- name: String!
2826
- value: String
2827
- }
2828
-
2829
- input NewStateRegister {
2830
- """Description of the state register"""
2831
- description: String
2832
-
2833
- """Group name for the state register"""
2834
- group: String
2835
-
2836
- """Name of the state register"""
2837
- name: String!
2838
-
2839
- """Number of decimal places if the state is a number type"""
2840
- place: String
2841
-
2842
- """
2843
- Reference to an external entity or data, used as a flexible foreign key
2844
- """
2845
- refBy: String
2846
-
2847
- """Current state value"""
2848
- state: Object
2849
-
2850
- """Time to live for the state value in seconds"""
2851
- ttl: Int
2852
-
2853
- """Type of the state"""
2854
- type: String
2855
-
2856
- """Unit of the state value"""
2857
- unit: String
2858
- }
2859
-
2860
- input NewTerminology {
2861
- category: String!
2862
- description: String
2863
- display: String!
2864
- locale: String!
2865
- name: String!
2866
- }
2867
-
2868
- input NewTheme {
2869
- active: Boolean
2870
- description: String
2871
- name: String!
2872
- type: String
2873
- value: Object
2874
- }
2875
-
2876
- input NewUser {
2877
- description: String
2878
- email: EmailAddress!
2879
- name: String!
2880
- password: String
2881
- roles: [ObjectRef!]
2882
- userType: String
2883
- }
2884
-
2885
- input NewUserByDomainWizardInput {
2886
- email: EmailAddress!
2887
- isInvitee: Boolean
2888
- name: String!
2889
- owner: Boolean!
2890
- password: String
2891
- roles: [NewRole!]!
2892
- }
2893
-
2894
- input NewUserPreference {
2895
- key: String!
2896
- preference: Object!
2897
- user: ObjectRef!
2898
- }
2899
-
2900
- """Entity for Notification"""
2901
- type Notification {
2902
- body: String
2903
- createdAt: DateTimeISO
2904
- creator: User
2905
- domain: Domain!
2906
- id: ID!
2907
- image: String
2908
- owner: User
2909
- property: Object
2910
- state: String
2911
- subject: String
2912
- timestamp: Date
2913
- title: String
2914
- type: String
2915
- updatedAt: DateTimeISO
2916
- updater: User
2917
- url: String
2918
- }
2919
-
2920
- type NotificationList {
2921
- items: [Notification!]!
2922
- total: Int!
2923
- }
2924
-
2925
- input NotificationPatch {
2926
- cuFlag: String
2927
- id: ID
2928
- state: NotificationStatus
2929
- }
2930
-
2931
- """Entity for NotificationRule"""
2932
- type NotificationRule {
2933
- body: String
2934
- channels: String
2935
- createdAt: DateTimeISO
2936
- creator: User
2937
- deletedAt: DateTimeISO
2938
- description: String
2939
- domain: Domain!
2940
- id: ID!
2941
- name: String
2942
-
2943
- """notification recipients."""
2944
- recipients: [RecipientItem!]
2945
- state: String
2946
- thumbnail: String
2947
- title: String
2948
- updatedAt: DateTimeISO
2949
- updater: User
2950
- url: String
2951
- version: Float
2952
- }
2953
-
2954
- type NotificationRuleList {
2955
- items: [NotificationRule!]!
2956
- total: Int!
2957
- }
2958
-
2959
- input NotificationRulePatch {
2960
- body: String
2961
- cuFlag: String
2962
- description: String
2963
- id: ID
2964
- name: String
2965
- state: NotificationRuleStatus
2966
- thumbnail: Upload
2967
- title: String
2968
- url: String
2969
- }
2970
-
2971
- """state enumeration of a notificationRule"""
2972
- enum NotificationRuleStatus {
2973
- DRAFT
2974
- RELEASED
2975
- }
2976
-
2977
- """state enumeration of a notification"""
2978
- enum NotificationStatus {
2979
- NOTREAD
2980
- READ
2981
- }
2982
-
2983
- """Entity for Oauth2Client"""
2984
- type Oauth2Client {
2985
- accessToken: String
2986
- accessTokenUrl: String
2987
- authUrl: String
2988
- callbackUrl: String
2989
- clientId: String
2990
- clientSecret: String
2991
- codeChallengeMethod: String
2992
- codeVerifier: String
2993
- createdAt: DateTimeISO
2994
- creator: User
2995
- description: String
2996
- domain: Domain!
2997
- expires: DateTimeISO
2998
- grantType: String
2999
- icon: String
3000
- id: ID!
3001
- jwtToken: JWT
3002
- name: String!
3003
- password: String
3004
- refreshToken: String
3005
- scopes: String
3006
- state: String
3007
- tokenType: String
3008
- updatedAt: DateTimeISO
3009
- updater: User
3010
- username: String
3011
- webhook: String
3012
- }
3013
-
3014
- type Oauth2ClientList {
3015
- items: [Oauth2Client!]!
3016
- total: Int!
3017
- }
3018
-
3019
- input Oauth2ClientPatch {
3020
- accessToken: String
3021
- accessTokenUrl: String
3022
- authUrl: String
3023
- callbackUrl: String
3024
- clientId: String
3025
- clientSecret: String
3026
- codeChallengeMethod: String
3027
- codeVerifier: String
3028
- description: String
3029
- grantType: String
3030
- icon: String
3031
- jwtToken: JWT
3032
- name: String
3033
- password: String
3034
- refreshToken: String
3035
- scopes: String
3036
- username: String
3037
- webhook: String
3038
- }
3039
-
3040
- """Can be anything"""
3041
- scalar Object
3042
-
3043
- input ObjectRef {
3044
- """Field description"""
3045
- description: String
3046
-
3047
- """Field id"""
3048
- id: ID!
3049
-
3050
- """Field name"""
3051
- name: String
3052
- }
3053
-
3054
- input ObjectRefApprovalLineOwnerType {
3055
- controlNo: String
3056
-
3057
- """Field description"""
3058
- description: String
3059
-
3060
- """Field id"""
3061
- id: ID!
3062
-
3063
- """Field name"""
3064
- name: String
3065
- }
3066
-
3067
- input ObjectRefForContact {
3068
- address: String
3069
-
3070
- """Field description"""
3071
- description: String
3072
- email: EmailAddress
3073
-
3074
- """Field id"""
3075
- id: ID!
3076
-
3077
- """Field name"""
3078
- name: String
3079
- phone: String
3080
- }
3081
-
3082
- input ObjectRefForDepartment {
3083
- controlNo: String
3084
-
3085
- """Field description"""
3086
- description: String
3087
-
3088
- """Field id"""
3089
- id: ID!
3090
-
3091
- """Field name"""
3092
- name: String
3093
- }
3094
-
3095
- input ObjectRefForEmployee {
3096
- active: Boolean
3097
- alias: String
3098
- controlNo: String
3099
-
3100
- """Field description"""
3101
- description: String
3102
- email: EmailAddress
3103
- hiredOn: String
3104
-
3105
- """Field id"""
3106
- id: ID!
3107
- jobPosition: String
3108
- jobResponsibility: String
3109
-
3110
- """Field name"""
3111
- name: String
3112
- photo: String
3113
- type: EmployeeType
3114
- }
3115
-
3116
- input ObjectRefForUser {
3117
- """Field description"""
3118
- description: String
3119
- email: EmailAddress
3120
-
3121
- """Field id"""
3122
- id: ID!
3123
-
3124
- """Field name"""
3125
- name: String
3126
- }
3127
-
3128
- type OrgMemberTarget {
3129
- controlNo: String
3130
-
3131
- """Field description"""
3132
- description: String
3133
-
3134
- """Field id"""
3135
- id: ID!
3136
-
3137
- """Field name"""
3138
- name: String
3139
- }
3140
-
3141
- """type enumeration of a approval line item"""
3142
- enum OrgMemberTargetType {
3143
- Department
3144
- Employee
3145
- MyDepartment
3146
- MySupervisor
3147
- Myself
3148
- Role
3149
- }
3150
-
3151
- """Entity for PDFRelease"""
3152
- type PDFRelease {
3153
- active: Boolean
3154
- createdAt: DateTimeISO
3155
- creator: User
3156
- deletedAt: DateTimeISO
3157
- description: String
3158
- domain: Domain
3159
- filePath: String
3160
- fileUrl: String
3161
- id: ID!
3162
- name: String
3163
- state: String
3164
- template: PDFTemplate!
3165
- templateId: String!
3166
- updatedAt: DateTimeISO
3167
- updater: User
3168
- }
3169
-
3170
- type PDFReleaseList {
3171
- items: [PDFRelease!]!
3172
- total: Int!
3173
- }
3174
-
3175
- input PDFReleasePatch {
3176
- active: Boolean
3177
- cuFlag: String
3178
- description: String
3179
- id: ID
3180
- name: String
3181
- state: PDFReleaseStatus
3182
- }
3183
-
3184
- """state enumeration of a PDFRelease"""
3185
- enum PDFReleaseStatus {
3186
- failed
3187
- published
3188
- }
3189
-
3190
- """Entity for PDFTemplate"""
3191
- type PDFTemplate {
3192
- active: Boolean
3193
- content_template: String
3194
- cover_template: String
3195
- createdAt: DateTimeISO
3196
- creator: User
3197
- description: String
3198
- domain: Domain
3199
- footer_template: String
3200
- header_template: String
3201
- id: ID!
3202
- last_template: String
3203
- name: String
3204
- page_size: String
3205
- state: String
3206
- updatedAt: DateTimeISO
3207
- updater: User
3208
- watermark: String
3209
- }
3210
-
3211
- type PDFTemplateList {
3212
- items: [PDFTemplate!]!
3213
- total: Int!
3214
- }
3215
-
3216
- input PDFTemplatePatch {
3217
- active: Boolean
3218
- content_template: String
3219
- cover_template: String
3220
- cuFlag: String
3221
- description: String
3222
- footer_template: String
3223
- header_template: String
3224
- id: ID
3225
- last_template: String
3226
- name: String
3227
- page_size: String = "A4"
3228
- state: PDFTemplateStatus
3229
- }
3230
-
3231
- """state enumeration of a PDF Template"""
3232
- enum PDFTemplateStatus {
3233
- draft
3234
- released
3235
- }
3236
-
3237
- """Entity for PagePreference"""
3238
- type PagePreference {
3239
- createdAt: DateTimeISO
3240
- creator: User
3241
- domain: Domain!
3242
- element: String
3243
- id: ID!
3244
- page: String
3245
- preference: Object
3246
- updatedAt: DateTimeISO
3247
- updater: User
3248
- user: User!
3249
- }
3250
-
3251
- type PagePreferenceList {
3252
- items: [PagePreference!]!
3253
- total: Int!
3254
- }
3255
-
3256
- input Pagination {
3257
- limit: Int
3258
- page: Int
3259
- }
3260
-
3261
- type Partner {
3262
- approvedAt: DateTimeISO
3263
- approver: User
3264
- domain: Domain!
3265
- id: ID!
3266
- partnerDomain: Domain!
3267
- requestedAt: DateTimeISO
3268
- requester: User
3269
- }
3270
-
3271
- type PartnerList {
3272
- items: [Partner!]
3273
- total: Int
3274
- }
3275
-
3276
- """Entity for PartnerSetting"""
3277
- type PartnerSetting {
3278
- category: String
3279
- createdAt: DateTimeISO
3280
- creator: User
3281
- description: String
3282
- domain: Domain!
3283
- id: ID!
3284
- name: String
3285
- partnerDomain: Domain
3286
- partnerDomainId: String
3287
- setting: Setting
3288
- settingId: String
3289
- updatedAt: DateTimeISO
3290
- updater: User
3291
- value: String
3292
- }
3293
-
3294
- type PartnerSettingList {
3295
- items: [PartnerSetting!]!
3296
- total: Int!
3297
- }
3298
-
3299
- input PartnerSettingPatch {
3300
- cuFlag: String!
3301
- id: ID
3302
- partnerDomain: ObjectRef
3303
- setting: ObjectRef
3304
- value: String
3305
- }
3306
-
3307
- type PasswordRule {
3308
- allowRepeat: Boolean
3309
- digit: Boolean
3310
- looseCharacterLength: Float
3311
- lowerCase: Boolean
3312
- specialCharacter: Boolean
3313
- tightCharacterLength: Float
3314
- upperCase: Boolean
3315
- useLoosePattern: Boolean
3316
- useTightPattern: Boolean
3317
- }
3318
-
3319
- """Entity for PayloadLog"""
3320
- type PayloadLog {
3321
- createdAt: DateTimeISO
3322
- creator: User
3323
- domain: Domain!
3324
- endpoint: String!
3325
- id: ID!
3326
- name: String!
3327
- request: String!
3328
- response: String!
3329
- src: String
3330
- type: String!
3331
- updatedAt: DateTimeISO
3332
- updater: User
3333
- }
3334
-
3335
- type PayloadLogList {
3336
- items: [PayloadLog!]!
3337
- total: Int!
3338
- }
3339
-
3340
- input PayloadLogPatch {
3341
- cuFlag: String!
3342
- description: String
3343
- id: ID
3344
- name: String
3345
- }
3346
-
3347
- type PendingObject {
3348
- due: String!
3349
- priority: Int!
3350
- stuff: Object!
3351
- tag: String
3352
- }
3353
-
3354
- """Entity for Board PlayGroup"""
3355
- type PlayGroup {
3356
- boards: [Board!]
3357
- createdAt: DateTimeISO
3358
- creator: User
3359
- description: String
3360
- domain: Domain
3361
- id: ID!
3362
- name: String!
3363
- updatedAt: DateTimeISO
3364
- updater: User
3365
- }
3366
-
3367
- type PlayGroupList {
3368
- items: [PlayGroup!]!
3369
- total: Int!
3370
- }
3371
-
3372
- input PlayGroupPatch {
3373
- description: String
3374
- name: String
3375
- }
3376
-
3377
- """Entity for PrinterDevice"""
3378
- type PrinterDevice {
3379
- activeFlag: Boolean
3380
- createdAt: DateTimeISO
3381
- creator: User
3382
- defaultFlag: Boolean
3383
- description: String!
3384
- domain: Domain!
3385
- dpi: Int
3386
- id: ID!
3387
- jobCategory: String
3388
- jobClass: String
3389
- jobType: String
3390
- name: String!
3391
- note: String
3392
- printerDriver: String
3393
- printerIp: String
3394
- printerPort: Int
3395
- serviceUrl: String
3396
- status: String
3397
- type: String!
3398
- updatedAt: DateTimeISO
3399
- updater: User
3400
- }
3401
-
3402
- type PrinterDeviceList {
3403
- items: [PrinterDevice!]!
3404
- total: Int!
3405
- }
3406
-
3407
- input PrinterDevicePatch {
3408
- activeFlag: Boolean
3409
- cuFlag: String!
3410
- defaultFlag: Boolean
3411
- description: String
3412
- dpi: Int
3413
- id: ID
3414
- jobCategory: String
3415
- jobClass: String
3416
- jobType: String
3417
- name: String
3418
- note: String
3419
- printerDriver: String
3420
- printerIp: String
3421
- printerPort: Int
3422
- serviceUrl: String
3423
- status: String
3424
- type: String
3425
- }
3426
-
3427
- type Privilege {
3428
- category: String
3429
- createdAt: DateTimeISO
3430
- creator: User
3431
- description: String
3432
- id: ID!
3433
- name: String!
3434
- privilege: String!
3435
- roles: [Role!]
3436
- updatedAt: DateTimeISO
3437
- updater: User
3438
- }
3439
-
3440
- type PrivilegeList {
3441
- items: [Privilege!]
3442
- total: Int
3443
- }
3444
-
3445
- type PrivilegeObject {
3446
- category: String
3447
- owner: Boolean
3448
- privilege: String
3449
- super: Boolean
3450
- }
3451
-
3452
- input PrivilegePatch {
3453
- category: String
3454
- description: String
3455
- id: String
3456
- name: String
3457
- roles: [ObjectRef!]
3458
- }
3459
-
3460
- """Object type for Profile"""
3461
- type Profile {
3462
- left: Float
3463
- picture: String
3464
- top: Float
3465
- zoom: Float
3466
- }
3467
-
3468
- """Input type for Profile"""
3469
- input ProfileInput {
3470
- file: Upload
3471
- left: Float
3472
- picture: String
3473
- top: Float
3474
- zoom: Float
3475
- }
3476
-
3477
- type PropertySpec {
3478
- label: String!
3479
- name: String!
3480
- placeholder: String
3481
- property: Object
3482
- styles: Object
3483
- type: String!
3484
- }
3485
-
3486
- type Query {
3487
- APIDocCompletion(input: APIDocCompletionInput!): APIDocCompletionOutput!
3488
-
3489
- """To fetch a PDFTemplate"""
3490
- PDFTemplate(id: String!): PDFTemplate
3491
-
3492
- """To fetch multiple PDFTemplates"""
3493
- PDFTemplates(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PDFTemplateList!
3494
- appBinding(id: String!): AppBinding!
3495
- appBindings(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): AppBindingList!
3496
-
3497
- """ To fetch appliance"""
3498
- appliance(id: String!): Appliance!
3499
-
3500
- """To fetch multiple appliance"""
3501
- appliances(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApplianceList!
3502
-
3503
- """To fetch application"""
3504
- application(id: String!): Application!
3505
-
3506
- """To fetch multiple application"""
3507
- applications(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApplicationList!
3508
-
3509
- """To fetch a approval line"""
3510
- approvalLine(id: String!): ApprovalLine
3511
-
3512
- """To fetch referable approval lines for the user"""
3513
- approvalLineReferences(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApprovalLineList!
3514
-
3515
- """To fetch multiple approval lines"""
3516
- approvalLines(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApprovalLineList!
3517
- attachment(id: String!): Attachment!
3518
- attachments(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): AttachmentList!
3519
-
3520
- """To fetch a AttributeSet"""
3521
- attributeSet(id: String!): AttributeSet
3522
-
3523
- """To fetch a AttributeSet by Entity name"""
3524
- attributeSetByEntity(entity: String!): AttributeSet
3525
-
3526
- """To fetch multiple AttributeSets"""
3527
- attributeSets(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): AttributeSetList!
3528
-
3529
- """To fetch a AuthProvider"""
3530
- authProvider(id: String!): AuthProvider
3531
-
3532
- """To fetch a AuthProvider"""
3533
- authProviderTypes: AuthProviderTypeList
3534
-
3535
- """To fetch multiple AuthProviders"""
3536
- authProviders(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): AuthProviderList!
3537
-
3538
- """To fetch a board"""
3539
- board(id: String!): Board!
3540
-
3541
- """To fetch a Board Model by name"""
3542
- boardByName(name: String!): Board
3543
-
3544
- """To fetch the latest Board published"""
3545
- boardPublished(id: String!): BoardHistory!
3546
-
3547
- """To fetch a BoardTemplate"""
3548
- boardTemplate(id: String!): BoardTemplate
3549
-
3550
- """To fetch multiple BoardTemplates"""
3551
- boardTemplates(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardTemplateList!
3552
-
3553
- """To fetch BoardTemplates created by me"""
3554
- boardTemplatesCreatedByMe(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardTemplateList!
3555
-
3556
- """To fetch a Board Versions"""
3557
- boardVersions(id: String!): [BoardHistory!]!
3558
-
3559
- """To fetch multiple Boards"""
3560
- boards(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardList!
3561
-
3562
- """To fetch Boards created by me"""
3563
- boardsCreatedByMe(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardList!
3564
- chatCompletion(input: ChatCompletionInput!): ChatCompletionOutput!
3565
-
3566
- """
3567
- Checks if the system is configured to provide a default password for new users.
3568
- """
3569
- checkDefaultPassword: Boolean!
3570
-
3571
- """
3572
- Determines whether the system provides a default password when creating a new user.
3573
- """
3574
- checkResettablePasswordToDefault: Boolean!
3575
-
3576
- """To fetch the preset of role for new user"""
3577
- checkRolePreset: [Role!]!
3578
-
3579
- """
3580
- Checks if the current authenticated user belongs to the current domain.
3581
- """
3582
- checkUserBelongsDomain: Boolean!
3583
-
3584
- """Checks if a user with the given email address exists in the system."""
3585
- checkUserExistence(email: EmailAddress!): Boolean!
3586
-
3587
- """To fetch common approval lines"""
3588
- commonApprovalLines(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApprovalLineList!
3589
-
3590
- """To fetch a CommonCode"""
3591
- commonCode(name: String!): CommonCode
3592
-
3593
- """To fetch a CommonCodeDetail"""
3594
- commonCodeDetail(id: String!): CommonCodeDetail!
3595
-
3596
- """To fetch multiple CommonCodeDetails"""
3597
- commonCodeDetails(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): CommonCodeDetailList!
3598
-
3599
- """To fetch multiple CommonCodes"""
3600
- commonCodes(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): CommonCodeList!
3601
-
3602
- """To fetch a connector"""
3603
- connection(name: String!): ConnectorType!
3604
-
3605
- """To fetch multiple connections"""
3606
- connections(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ConnectionList!
3607
-
3608
- """To fetch the connector from a connection"""
3609
- connectorByConnection(connectionName: String!): ConnectorType!
3610
-
3611
- """To fetch multiple connector"""
3612
- connectors: ConnectorList!
3613
-
3614
- """To fetch a Contact"""
3615
- contact(id: String!): Contact
3616
-
3617
- """To fetch multiple Contacts"""
3618
- contacts(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ContactList!
3619
- customers: [Domain!]!
3620
- decipherCode(input: CodeDecipherInput!): CodeDecipherOutput!
3621
- decipherErrorCode(input: CodeDecipherInput!): CodeDecipherOutput!
3622
-
3623
- """To fetch a Department"""
3624
- department(id: String!): Department
3625
-
3626
- """To fetch a Root Departments"""
3627
- departmentRoots(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DepartmentList
3628
-
3629
- """To fetch multiple Departments"""
3630
- departments(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DepartmentList!
3631
-
3632
- """To fetch domain"""
3633
- domain(id: String!): Domain!
3634
-
3635
- """To fetch all domains (Only superuser is granted this privilege.)"""
3636
- domains(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DomainList!
3637
-
3638
- """To fetch domains with given privilege for user"""
3639
- domainsWithPrivilege(category: String!, privilege: String!): [Domain!]!
3640
-
3641
- """To fetch multiple appliance"""
3642
- edges(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApplianceList!
3643
-
3644
- """
3645
- Fetches a specific employee by their unique ID. Returns the employee object if found, or null if not found.
3646
- """
3647
- employee(id: String!): Employee
3648
-
3649
- """
3650
- Fetches a list of employees based on provided query parameters. Supports searching by name, control number, and alias.
3651
- """
3652
- employees(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): EmployeeList!
3653
-
3654
- """To fetch multiple Entities"""
3655
- entities(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): EntityList!
3656
-
3657
- """To fetch a Entity"""
3658
- entity(id: String!): Entity!
3659
-
3660
- """To fetch a EntityColumn"""
3661
- entityColumn(id: String!): EntityColumn!
3662
-
3663
- """To fetch multiple EntityColumns"""
3664
- entityColumns(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): EntityColumnList!
3665
-
3666
- """To fetch a EntityMetadata"""
3667
- entityMetadata(name: String!): EntityMetadata!
3668
-
3669
- """To fetch a Favorite"""
3670
- favorite(id: String!): Favorite!
3671
-
3672
- """To fetch multiple BoardFavorites"""
3673
- favoriteBoards(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardFavoriteList!
3674
-
3675
- """To fetch multiple Favorites"""
3676
- favorites(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): FavoriteList!
3677
-
3678
- """To fetch the state of a connection"""
3679
- fetchConnectionState(name: String!): ConnectionState!
3680
-
3681
- """To fetch a Font"""
3682
- font(id: String!): Font!
3683
-
3684
- """To fetch multiple Fonts"""
3685
- fonts(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): FontList!
3686
- grantedRoles: [GrantedRole!]!
3687
- grantingRoles(customerId: String!): [GrantedRole!]!
3688
-
3689
- """To fetch a Group"""
3690
- group(id: String!): Group
3691
-
3692
- """To fetch multiple Groups"""
3693
- groups(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): GroupList!
3694
-
3695
- """To query whether I have the given permission"""
3696
- hasPrivilege(category: String!, privilege: String!): Boolean!
3697
- i18nCompletion(input: i18nCompletionInput!): i18nCompletionOutput!
3698
- imageCompletion(input: ImageCompletionInput!): ImageCompletionOutput!
3699
-
3700
- """To fetch integration Analyses"""
3701
- integrationAnalysis: Object!
3702
- invitation(email: EmailAddress!, reference: String!, type: String!): Invitation!
3703
- invitations(reference: String!, type: String!): InvitationList!
3704
-
3705
- """To fetch multiple LoginHistories"""
3706
- loginHistories(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): LoginHistoryList!
3707
-
3708
- """To fetch a Menu"""
3709
- menu(id: String!): Menu!
3710
-
3711
- """To fetch a MenuButton"""
3712
- menuButton(id: String!): MenuButton!
3713
-
3714
- """To fetch multiple MenuButtons"""
3715
- menuButtons(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuButtonList!
3716
-
3717
- """To fetch a Menu by routing"""
3718
- menuByRouting(routing: String!): Menu!
3719
-
3720
- """To fetch a MenuColumn"""
3721
- menuColumn(id: String!): MenuColumn!
3722
-
3723
- """To fetch multiple MenuColumns"""
3724
- menuColumns(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuColumnList!
3725
-
3726
- """To fetch a MenuDetail"""
3727
- menuDetail(id: String!): MenuDetail!
3728
-
3729
- """To fetch a MenuDetailButton"""
3730
- menuDetailButton(id: String!): MenuDetailButton!
3731
-
3732
- """To fetch multiple MenuDetailButtons"""
3733
- menuDetailButtons(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuDetailButtonList!
3734
-
3735
- """To fetch a MenuDetailColumn"""
3736
- menuDetailColumn(id: String!): MenuDetailColumn!
3737
-
3738
- """To fetch multiple MenuDetailColumns"""
3739
- menuDetailColumns(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuDetailColumnList!
3740
-
3741
- """To fetch multiple MenuDetails"""
3742
- menuDetails(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuDetailList!
3743
-
3744
- """To fetch multiple Menus"""
3745
- menus(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuList!
3746
-
3747
- """To fetch approval lines only for to the user"""
3748
- myApprovalLines(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApprovalLineList!
3749
-
3750
- """To fetch current user's Favorites"""
3751
- myFavorites: [Favorite!]!
3752
- myLoginHistories(limit: Float!): [LoginHistory!]!
3753
-
3754
- """To fetch my own Menus"""
3755
- myMenus(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuList!
3756
-
3757
- """To fetch my notifications"""
3758
- myNotifications(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): NotificationList!
3759
-
3760
- """To fetch a User's own PagePreference"""
3761
- myPageAllPreferences(page: String!): [PagePreference!]
3762
-
3763
- """To fetch a User's own PagePreference"""
3764
- myPagePreference(element: String!, page: String!): PagePreference
3765
-
3766
- """To fetch multiple PagePreferences"""
3767
- myPagePreferences(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PagePreferenceList!
3768
-
3769
- """To fetch roles of current user"""
3770
- myRoles: [Role!]!
3771
-
3772
- """To fetch a User's own UserPreference"""
3773
- myUserPreference(element: String!, key: String!): UserPreference
3774
-
3775
- """To fetch multiple UserPreferences"""
3776
- myUserPreferences(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): UserPreferenceList!
3777
-
3778
- """To fetch a Notification"""
3779
- notification(id: String!): Notification
3780
-
3781
- """To fetch a NotificationRule"""
3782
- notificationRule(id: String!): NotificationRule
3783
-
3784
- """To fetch multiple NotificationRules"""
3785
- notificationRules(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): NotificationRuleList!
3786
-
3787
- """To fetch multiple Notificationes"""
3788
- notificationes(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): NotificationList!
3789
-
3790
- """To fetch a Oauth2Client"""
3791
- oauth2Client(id: String!): Oauth2Client
3792
-
3793
- """To fetch multiple Oauth2Clients"""
3794
- oauth2Clients(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): Oauth2ClientList!
3795
-
3796
- """To fetch a PagePreference"""
3797
- pagePreference(id: String!): PagePreference
3798
-
3799
- """To fetch specific domain's CommonCodes by given name"""
3800
- partnerCommonCode(name: String!, partnerDomainId: String!): CommonCode!
3801
-
3802
- """To fetch a PartnerSetting"""
3803
- partnerSetting(name: String!, partnerDomainId: String!): PartnerSetting!
3804
-
3805
- """To fetch multiple PartnerSettings"""
3806
- partnerSettings(filters: [Filter!]!, pagination: Pagination!, partnerDomain: ObjectRef!, sortings: [Sorting!]!): PartnerSettingList!
3807
- partners(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PartnerList!
3808
-
3809
- """
3810
- Retrieves the current password rule configuration for the system, such as required character types and minimum length.
3811
- """
3812
- passwordRule: PasswordRule!
3813
-
3814
- """To fetch a PayloadLog"""
3815
- payloadLog(id: String!): PayloadLog!
3816
-
3817
- """To fetch multiple PayloadLogs"""
3818
- payloadLogs(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PayloadLogList!
3819
-
3820
- """To fetch a PDFRelease"""
3821
- pdfRelease(id: String!): PDFRelease
3822
-
3823
- """To fetch multiple PDFReleases"""
3824
- pdfReleases(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PDFReleaseList!
3825
-
3826
- """To fetch a PlayGroup"""
3827
- playGroup(id: String!): PlayGroup
3828
-
3829
- """To fetch a PlayGroup by name"""
3830
- playGroupByName(name: String!): PlayGroup
3831
-
3832
- """To fetch multiple PlayGroups"""
3833
- playGroups(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PlayGroupList!
3834
-
3835
- """To fetch a UserPreference"""
3836
- preference(id: String!): UserPreference
3837
-
3838
- """To fetch a PrinterDevice"""
3839
- printerDevice(id: String!): PrinterDevice!
3840
-
3841
- """To fetch multiple PrinterDevices"""
3842
- printerDevices(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PrinterDeviceList!
3843
-
3844
- """To fetch multiple privileges"""
3845
- privileges(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PrivilegeList!
3846
-
3847
- """To fetch role"""
3848
- role(name: String!): Role!
3849
-
3850
- """To fetch Menus by role"""
3851
- roleMenus(roleId: String!): MenuList!
3852
-
3853
- """To fetch privileges of a role"""
3854
- rolePrivileges(roleId: String!): [RolePrivilege!]!
3855
-
3856
- """To fetch multiple users"""
3857
- roles(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): RoleList!
3858
-
3859
- """To fetch a scenario"""
3860
- scenario(id: String!): Scenario!
3861
-
3862
- """To fetch a scenario instance"""
3863
- scenarioInstance(instanceName: String!): ScenarioInstance!
3864
-
3865
- """To fetch multiple scenario instances"""
3866
- scenarioInstances(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ScenarioInstanceList!
3867
-
3868
- """To fetch multiple scenarios"""
3869
- scenarios(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ScenarioList!
3870
- schedule(id: ID!): Schedule
3871
-
3872
- """To fetch multiple Schedules"""
3873
- schedules(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ScheduleList!
3874
- searchCustomers(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DomainList!
3875
-
3876
- """To fetch domain"""
3877
- secureIPList: Object
3878
-
3879
- """To fetch a Setting"""
3880
- setting(name: String!, partnerDomainId: String): Setting!
3881
-
3882
- """To fetch multiple Settings"""
3883
- settings(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): SettingList!
3884
-
3885
- """To fetch a StateRegister"""
3886
- stateRegister(id: String!): StateRegister
3887
-
3888
- """To fetch a StateRegister by name"""
3889
- stateRegisterByName(name: String!): StateRegister
3890
-
3891
- """To fetch multiple StateRegisters"""
3892
- stateRegisters(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): StateRegisterList!
3893
-
3894
- """To fetch a step"""
3895
- step(name: String!): Step!
3896
-
3897
- """To fetch multiple steps"""
3898
- steps(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): StepList!
3899
-
3900
- """To fetch a task-type"""
3901
- taskType(name: String!): TaskType!
3902
-
3903
- """To fetch multiple task-type"""
3904
- taskTypes: TaskTypeList!
3905
-
3906
- """To fetch the connector from a task-type"""
3907
- taskTypesByConnection(connectionName: String!): TaskTypeList!
3908
-
3909
- """To fetch multiple Terminologies"""
3910
- terminologies(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): TerminologyList!
3911
-
3912
- """To fetch a Terminology"""
3913
- terminology(id: String!): Terminology!
3914
-
3915
- """To fetch a Theme"""
3916
- theme(id: String!): Theme
3917
-
3918
- """To fetch multiple Themes"""
3919
- themes(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ThemeList!
3920
-
3921
- """Fetches a user by their email address within the current domain."""
3922
- user(email: EmailAddress!): User!
3923
-
3924
- """To fetch Menus by role"""
3925
- userMenus: [Menu!]!
3926
-
3927
- """To fetch roles of a user"""
3928
- userRoles(userId: String!): [UserRole!]!
3929
-
3930
- """
3931
- Fetches a list of users based on provided search parameters within the current domain.
3932
- """
3933
- users(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): UserList!
3934
- vendors: [Domain!]!
3935
- }
3936
-
3937
- type RecipientItem {
3938
- recipient: OrgMemberTarget
3939
- type: OrgMemberTargetType
3940
- value: String
3941
- }
3942
-
3943
- type Role {
3944
- createdAt: DateTimeISO
3945
- creator: User
3946
- description: String
3947
- domain: Domain!
3948
- id: ID!
3949
- name: String
3950
- privileges: [Privilege!]
3951
- updatedAt: DateTimeISO
3952
- updater: User
3953
- users: [User!]
3954
- }
3955
-
3956
- type RoleList {
3957
- items: [Role!]
3958
- total: Int
3959
- }
3960
-
3961
- input RolePatch {
3962
- cuFlag: String
3963
- description: String
3964
- id: String
3965
- name: String
3966
- privileges: [ObjectRef!]
3967
- users: [ObjectRef!]
3968
- }
3969
-
3970
- type RolePrivilege {
3971
- assigned: Boolean
3972
- category: String
3973
- description: String
3974
- id: String
3975
- name: String
3976
- }
3977
-
3978
- type Scenario {
3979
- """[will be deprecated] automatically be started when this server start"""
3980
- active: Boolean
3981
- connectionNames: [Connection!]!
3982
- createdAt: DateTimeISO
3983
- creator: User
3984
- description: String
3985
- domain: Domain!
3986
- id: ID!
3987
- instances: [ScenarioInstance!]
3988
- name: String!
3989
- privilege: PrivilegeObject
3990
-
3991
- """accessible and executable system-wide"""
3992
- public: Boolean
3993
- publishTags: [Connection!]!
3994
- role: Role
3995
- schedule: String
3996
- scheduleId: String
3997
- state: String
3998
- steps: [Step!]
3999
- timezone: String
4000
- ttl: Float
4001
- type: String
4002
- updatedAt: DateTimeISO
4003
- updater: User
4004
- }
4005
-
4006
- type ScenarioInstance {
4007
- data: Object
4008
- domain: Domain
4009
- instanceName: String
4010
- message: String
4011
- progress: ScenarioInstanceProgress
4012
- result: Object
4013
- root: ScenarioInstance
4014
- scenarioName: String
4015
- state: String
4016
- timestamp: DateTimeISO
4017
- user: User
4018
- variables: Object
4019
- }
4020
-
4021
- type ScenarioInstanceList {
4022
- items: [ScenarioInstance!]!
4023
- total: Int!
4024
- }
4025
-
4026
- type ScenarioInstanceProgress {
4027
- rate: Int!
4028
- rounds: Int!
4029
- step: Int!
4030
- steps: Int!
4031
- }
4032
-
4033
- type ScenarioInstanceRunResult {
4034
- data: Object
4035
- instanceName: String
4036
- message: String
4037
- result: Object
4038
- scenarioName: String
4039
- state: String
4040
- timestamp: DateTimeISO
4041
- variables: Object
4042
- }
4043
-
4044
- type ScenarioInstanceState {
4045
- data: Object
4046
- domain: Domain
4047
- instanceName: String
4048
- message: String
4049
- progress: ScenarioInstanceProgress
4050
- scenarioName: String
4051
- state: ScenarioInstanceStatus
4052
- timestamp: DateTimeISO
4053
- variables: Object
4054
- }
4055
-
4056
- """state enumeration of a scenario-instance"""
4057
- enum ScenarioInstanceStatus {
4058
- HALTED
4059
- READY
4060
- STARTED
4061
- STOPPED
4062
- UNLOADED
4063
- }
4064
-
4065
- type ScenarioList {
4066
- items: [Scenario!]!
4067
- total: Int!
4068
- }
4069
-
4070
- input ScenarioPatch {
4071
- active: Boolean
4072
- cuFlag: String
4073
- description: String
4074
- id: ID
4075
- name: String
4076
- role: ObjectRef
4077
- schedule: String
4078
- steps: [StepPatch!]
4079
- timezone: String
4080
- ttl: Float
4081
- type: String
4082
- }
4083
-
4084
- type ScenarioQueueState {
4085
- domain: Domain!
4086
- queue: [PendingObject!]!
4087
- }
4088
-
4089
- type Schedule {
4090
- client: ScheduleClient!
4091
- id: ID!
4092
- name: String
4093
- schedule: String
4094
- task: ScheduleTask!
4095
- timezone: String
4096
- type: String!
4097
- }
4098
-
4099
- type ScheduleClient {
4100
- application: String!
4101
- group: String!
4102
- key: String!
4103
- operation: String!
4104
- type: String!
4105
- }
4106
-
4107
- input ScheduleClientInput {
4108
- application: String!
4109
- group: String!
4110
- key: String!
4111
- operation: String!
4112
- type: String!
4113
- }
4114
-
4115
- type ScheduleList {
4116
- items: [Schedule!]!
4117
- total: Int!
4118
- }
4119
-
4120
- input SchedulePatch {
4121
- client: ScheduleClientInput!
4122
- id: String
4123
- name: String
4124
- schedule: String
4125
- task: ScheduleTaskInput!
4126
- timezone: String
4127
- type: String!
4128
- }
4129
-
4130
- type ScheduleTask {
4131
- connection: ScheduleTaskConnection!
4132
- data: Object!
4133
- failed_policy: String!
4134
- history_check: Boolean!
4135
- max_retry_count: Int!
4136
- retry_count: Int!
4137
- retry_wait: Int!
4138
- type: String!
4139
- }
4140
-
4141
- type ScheduleTaskConnection {
4142
- headers: Object
4143
- host: String
4144
- topic: String
4145
- }
4146
-
4147
- input ScheduleTaskConnectionInput {
4148
- headers: Object
4149
- host: String
4150
- topic: String
4151
- }
4152
-
4153
- input ScheduleTaskInput {
4154
- connection: ScheduleTaskConnectionInput!
4155
- data: Object!
4156
- failed_policy: String!
4157
- history_check: Boolean!
4158
- max_retry_count: Int!
4159
- retry_count: Int!
4160
- retry_wait: Int!
4161
- type: String!
4162
- }
4163
-
4164
- """Entity for Setting"""
4165
- type Setting {
4166
- category: String!
4167
- createdAt: DateTimeISO
4168
- creator: User
4169
- description: String
4170
- domain: Domain!
4171
- id: ID!
4172
- name: String!
4173
- updatedAt: DateTimeISO
4174
- updater: User
4175
- value: String
4176
- }
4177
-
4178
- type SettingList {
4179
- items: [Setting!]!
4180
- total: Int!
4181
- }
4182
-
4183
- input SettingPatch {
4184
- category: String
4185
- cuFlag: String
4186
- description: String
4187
- id: ID
4188
- name: String
4189
- value: String
4190
- }
4191
-
4192
- input Sorting {
4193
- """
4194
- Set to true if descending sort. Default is "false"
4195
- """
4196
- desc: Boolean
4197
-
4198
- """Field name to sort by"""
4199
- name: String!
4200
- }
4201
-
4202
- """Entity for StateRegister"""
4203
- type StateRegister {
4204
- """Creation time of the state register"""
4205
- createdAt: DateTimeISO
4206
-
4207
- """User who created the state register"""
4208
- creator: User
4209
-
4210
- """ID of the user who created the state register"""
4211
- creatorId: String
4212
-
4213
- """Description of the state register"""
4214
- description: String
4215
-
4216
- """Associated domain for the state register"""
4217
- domain: Domain!
4218
-
4219
- """ID of the associated domain"""
4220
- domainId: String!
4221
-
4222
- """Group name for the state register"""
4223
- group: String
4224
- id: ID!
4225
-
4226
- """Name of the state register"""
4227
- name: String
4228
-
4229
- """Number of decimal places if the state is a number type"""
4230
- place: String
4231
-
4232
- """
4233
- Reference to an external entity or data, used as a flexible foreign key
4234
- """
4235
- refBy: String
4236
-
4237
- """Current state value"""
4238
- state: Object
4239
-
4240
- """Time to live for the state value in seconds"""
4241
- ttl: Int
4242
-
4243
- """Type of the state"""
4244
- type: String
4245
-
4246
- """Unit of the state value"""
4247
- unit: String
4248
-
4249
- """Last update time of the state register"""
4250
- updatedAt: DateTimeISO
4251
-
4252
- """User who last updated the state register"""
4253
- updater: User
4254
-
4255
- """ID of the user who last updated the state register"""
4256
- updaterId: String
4257
-
4258
- """User who wrote the state"""
4259
- writer: User
4260
-
4261
- """ID of the user who wrote the state"""
4262
- writerId: String
4263
-
4264
- """Time when the state was recorded"""
4265
- wroteAt: DateTimeISO
4266
- }
4267
-
4268
- type StateRegisterList {
4269
- """List of state registers"""
4270
- items: [StateRegister!]!
4271
-
4272
- """Total number of state registers"""
4273
- total: Int!
4274
- }
4275
-
4276
- input StateRegisterPatch {
4277
- """Flag indicating create/update operations"""
4278
- cuFlag: String
4279
-
4280
- """Description of the state register"""
4281
- description: String
4282
-
4283
- """Group name for the state register"""
4284
- group: String
4285
-
4286
- """ID of the state register"""
4287
- id: ID
4288
-
4289
- """Name of the state register"""
4290
- name: String
4291
-
4292
- """Number of decimal places if the state is a number type"""
4293
- place: String
4294
-
4295
- """
4296
- Reference to an external entity or data, used as a flexible foreign key
4297
- """
4298
- refBy: String
4299
-
4300
- """Current state value"""
4301
- state: Object
4302
-
4303
- """Time to live for the state value in seconds"""
4304
- ttl: Int
4305
-
4306
- """Type of the state"""
4307
- type: String
4308
-
4309
- """Unit of the state value"""
4310
- unit: String
4311
- }
4312
-
4313
- type Step {
4314
- connection: String
4315
- createdAt: DateTimeISO
4316
- creator: User
4317
- description: String
4318
- domain: Domain
4319
- id: ID!
4320
- log: Boolean
4321
- name: String!
4322
- params: String
4323
-
4324
- """
4325
- A boolean attribute indicating the inclusion status of an element in the result
4326
- """
4327
- result: Boolean
4328
- scenario: Scenario
4329
- sequence: Float
4330
- skip: Boolean
4331
- task: String
4332
- updatedAt: DateTimeISO
4333
- updater: User
4334
- }
4335
-
4336
- type StepList {
4337
- items: [Step!]!
4338
- total: Int!
4339
- }
4340
-
4341
- input StepPatch {
4342
- connection: String
4343
- cuFlag: String
4344
- description: String
4345
- id: ID
4346
- log: Boolean
4347
- name: String
4348
- params: String
4349
- result: Boolean
4350
- sequence: Int
4351
- skip: Boolean
4352
- task: String
4353
- }
4354
-
4355
- type Subscription {
4356
- board(id: String!): Board!
4357
- connectionLog(level: String): Log!
4358
- connectionState(name: String): ConnectionState!
4359
- data(tag: String!): Data!
4360
- notification(subjects: [String!]): Notification!
4361
- playGroup(id: String!): PlayGroup!
4362
- scenarioInstanceLog(instanceName: String, level: String, scenarioName: String): Log!
4363
- scenarioInstanceState(instanceName: String, scenarioName: String): ScenarioInstanceState!
4364
- scenarioQueueState: ScenarioQueueState!
4365
- }
4366
-
4367
- type TaskType {
4368
- connectorFree: Boolean
4369
- description: String
4370
- help: String
4371
- name: String!
4372
- parameterSpec: [PropertySpec!]
4373
- }
4374
-
4375
- type TaskTypeList {
4376
- items: [TaskType!]!
4377
- total: Int!
4378
- }
4379
-
4380
- """Entity for Terminology"""
4381
- type Terminology {
4382
- category: String!
4383
- createdAt: DateTimeISO
4384
- creator: User
4385
- description: String
4386
- display: String!
4387
- domain: Domain!
4388
- id: ID!
4389
- locale: String!
4390
- name: String!
4391
- updatedAt: DateTimeISO
4392
- updater: User
4393
- }
4394
-
4395
- type TerminologyList {
4396
- items: [Terminology!]!
4397
- total: Int!
4398
- }
4399
-
4400
- input TerminologyPatch {
4401
- category: String
4402
- cuFlag: String
4403
- description: String
4404
- display: String
4405
- id: ID
4406
- locale: String
4407
- name: String
4408
- }
4409
-
4410
- """Entity for Theme"""
4411
- type Theme {
4412
- active: Boolean
4413
- createdAt: DateTimeISO
4414
- creator: User
4415
- deletedAt: DateTimeISO
4416
- description: String
4417
- domain: Domain!
4418
- id: ID!
4419
- name: String
4420
- type: String
4421
- updatedAt: DateTimeISO
4422
- updater: User
4423
- value: Object
4424
- }
4425
-
4426
- type ThemeList {
4427
- items: [Theme!]!
4428
- total: Int!
4429
- }
4430
-
4431
- input ThemePatch {
4432
- active: Boolean
4433
- cuFlag: String
4434
- description: String
4435
- id: ID
4436
- name: String
4437
- type: String
4438
- value: Object
4439
- }
4440
-
4441
- """The `Upload` scalar type represents a file upload."""
4442
- scalar Upload
4443
-
4444
- type UploadURL {
4445
- fields: Any!
4446
- url: String!
4447
- }
4448
-
4449
- type User {
4450
- createdAt: DateTimeISO
4451
- creator: User
4452
- description: String
4453
- domains: [Domain!]!
4454
- email: EmailAddress!
4455
- id: ID!
4456
- locale: String
4457
- name: String
4458
- owner: Boolean
4459
- reference: String
4460
- roles: [Role!]!
4461
- ssoId: String
4462
- status: String!
4463
- updatedAt: DateTimeISO
4464
- updater: User
4465
- userType: String
4466
- usersAuthProviders: [UsersAuthProviders!]
4467
- }
4468
-
4469
- type UserList {
4470
- items: [User!]
4471
- total: Int
4472
- }
4473
-
4474
- input UserPatch {
4475
- cuFlag: String
4476
- description: String
4477
- domains: [ObjectRef!]
4478
- email: EmailAddress
4479
- id: ID
4480
- name: String
4481
- password: String
4482
- roles: [ObjectRef!]
4483
- status: String
4484
- userType: String
4485
- }
4486
-
4487
- """Entity for UserPreference"""
4488
- type UserPreference {
4489
- createdAt: DateTimeISO
4490
- creator: User
4491
- domain: Domain
4492
- id: ID!
4493
- key: String
4494
- preference: Object
4495
- updatedAt: DateTimeISO
4496
- updater: User
4497
- user: User!
4498
- }
4499
-
4500
- type UserPreferenceList {
4501
- items: [UserPreference!]!
4502
- total: Int!
4503
- }
4504
-
4505
- input UserPreferencePatch {
4506
- cuFlag: String
4507
- id: ID
4508
- key: String!
4509
- preference: Object!
4510
- user: ObjectRef!
4511
- }
4512
-
4513
- type UserRole {
4514
- assigned: Boolean
4515
- description: String
4516
- id: String
4517
- name: String
4518
- }
4519
-
4520
- """Entity for UsersAuthProviders"""
4521
- type UsersAuthProviders {
4522
- authProvider: AuthProvider
4523
- createdAt: DateTimeISO
4524
- domain: Domain!
4525
- id: ID!
4526
- ssoId: String
4527
- updatedAt: DateTimeISO
4528
- user: User
4529
- }
4530
-
4531
- input i18nCompletionInput {
4532
- json: String!
4533
- }
4534
-
4535
- type i18nCompletionOutput {
4536
- message: String
4537
- }