@operato/scene-grist 8.0.0-beta.0 → 8.0.0-beta.2

Sign up to get free protection for your applications and to get access to all the features.
package/schema.graphql DELETED
@@ -1,4458 +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
- bankAccount: String
756
- bankName: String
757
- contact: Contact
758
- controlNo: String!
759
- createdAt: DateTimeISO
760
- creator: User
761
- deletedAt: DateTimeISO
762
- department: Department
763
- domain: Domain!
764
- email: EmailAddress
765
- emergencyContact: String
766
- emergencyContactPhone: String
767
- extension: String
768
- hiredOn: DateTimeISO
769
- id: ID!
770
- jobPosition: String
771
- jobResponsibility: String
772
- manages: [Department!]!
773
- name: String
774
- note: String
775
- phone: String
776
- photo: String
777
- profile: Profile
778
- retiredOn: DateTimeISO
779
- supervises: [Employee!]!
780
- supervisor: Employee
781
- type: String
782
- updatedAt: DateTimeISO
783
- updater: User
784
- user: User
785
- version: Float
786
- }
787
-
788
- type EmployeeList {
789
- items: [Employee!]!
790
- total: Int!
791
- }
792
-
793
- input EmployeePatch {
794
- active: Boolean
795
- alias: String
796
- bankAccount: String
797
- bankName: String
798
- contact: ObjectRefForContact
799
- controlNo: String
800
- cuFlag: String
801
- department: ObjectRefForDepartment
802
- emergencyContact: String
803
- emergencyContactPhone: String
804
- hiredOn: DateTimeISO
805
- id: ID
806
- jobPosition: String
807
- jobResponsibility: String
808
- name: String
809
- note: String
810
- photo: Upload
811
- retiredOn: DateTimeISO
812
- supervisor: ObjectRefForEmployee
813
- type: EmployeeType
814
- user: ObjectRefForUser
815
- }
816
-
817
- """type enumeration of a employee"""
818
- enum EmployeeType {
819
- FULLTIME
820
- PARTTIME
821
- TEMPORARY
822
- }
823
-
824
- """Entity for Entity"""
825
- type Entity {
826
- active: Boolean
827
- association: String
828
- bundle: String!
829
- children: [Entity!]
830
- columns: [EntityColumn!]
831
- createdAt: DateTimeISO
832
- creator: User
833
- dataProp: String
834
- delStrategy: String
835
- description: String
836
- domain: Domain!
837
- extEntity: Boolean
838
- fixedColumns: Float
839
- id: ID!
840
- idField: String
841
- idType: String
842
- master: Entity
843
- multiSaveUrl: String
844
- name: String!
845
- refField: String
846
- searchUrl: String
847
- tableName: String!
848
- titleField: String
849
- updatedAt: DateTimeISO
850
- updater: User
851
- }
852
-
853
- """Entity for EntityColumn"""
854
- type EntityColumn {
855
- colSize: Float
856
- colType: String!
857
- createdAt: DateTimeISO
858
- creator: User
859
- defVal: String
860
- description: String
861
- domain: Domain!
862
- entity: Entity!
863
- formEditor: String
864
- formFormat: String
865
- formValidator: String
866
- gridAlign: String
867
- gridEditor: String
868
- gridFormat: String
869
- gridRank: Float
870
- gridValidator: String
871
- gridWidth: Float
872
- id: ID!
873
- ignoreOnSav: Boolean
874
- name: String!
875
- nullable: Boolean
876
- rangeVal: String
877
- rank: Float
878
- refName: String
879
- refParams: String
880
- refRelated: String
881
- refType: String
882
- refUrl: String
883
- reverseSort: Boolean
884
- searchEditor: String
885
- searchInitVal: String
886
- searchName: String
887
- searchOper: String
888
- searchRank: Float
889
- sortRank: Float
890
- term: String
891
- uniqRank: Float
892
- updatedAt: DateTimeISO
893
- updater: User
894
- virtualField: Boolean
895
- }
896
-
897
- type EntityColumnList {
898
- items: [EntityColumn!]!
899
- total: Int!
900
- }
901
-
902
- """EntityColumn of Entity"""
903
- type EntityColumnMetadata {
904
- enum: [Any!]
905
- generatedType: String
906
- isArray: Boolean
907
- isNullable: Boolean!
908
- isPrimary: Boolean
909
- isReadonly: Boolean
910
- isUpdateDate: Boolean
911
- isVersion: Boolean
912
- length: Float
913
- propertyName: String!
914
- referenceColumn: Any
915
- relationMetadata: EntityRelationMetadata
916
- target: Any
917
- type: Any!
918
- width: Int
919
- }
920
-
921
- input EntityColumnPatch {
922
- colSize: Int
923
- colType: String
924
- cuFlag: String
925
- defVal: String
926
- description: String
927
- entity: ObjectRef
928
- formEditor: String
929
- formFormat: String
930
- formValidator: String
931
- gridAlign: String
932
- gridEditor: String
933
- gridFormat: String
934
- gridRank: Int
935
- gridValidator: String
936
- gridWidth: Int
937
- id: ID
938
- ignoreOnSav: Boolean
939
- name: String
940
- nullable: Boolean
941
- rangeVal: String
942
- rank: Int
943
- refName: String
944
- refParams: String
945
- refRelated: String
946
- refType: String
947
- refUrl: String
948
- reverseSort: Boolean
949
- searchEditor: String
950
- searchInitVal: String
951
- searchName: String
952
- searchOper: String
953
- searchRank: Int
954
- sortRank: Float
955
- term: String
956
- uniqRank: Int
957
- virtualField: Boolean
958
- }
959
-
960
- type EntityList {
961
- items: [Entity!]!
962
- total: Int!
963
- }
964
-
965
- """Entity for EntityMetadata"""
966
- type EntityMetadata {
967
- columns: [EntityColumnMetadata!]
968
- name: String!
969
- }
970
-
971
- input EntityPatch {
972
- active: Boolean
973
- association: String
974
- bundle: String
975
- children: [String!]
976
- columns: [String!]
977
- cuFlag: String
978
- dataProp: String
979
- delStrategy: String
980
- description: String
981
- extEntity: Boolean
982
- fixedColumns: Int
983
- id: ID
984
- idField: String
985
- idType: String
986
- master: String
987
- multiSaveUrl: String
988
- name: String
989
- refField: String
990
- searchUrl: String
991
- tableName: String
992
- titleField: String
993
- }
994
-
995
- """RelationType of EntityColumn"""
996
- type EntityRelationMetadata {
997
- isManyToOne: Boolean
998
- isOneToMany: Boolean
999
- isOneToOne: Boolean
1000
- joinColumns: [EntityColumnMetadata!]
1001
- joinTableName: String
1002
- relationType: Boolean
1003
- }
1004
-
1005
- """Entity for Favorite"""
1006
- type Favorite {
1007
- createdAt: DateTimeISO
1008
- creator: User
1009
- domain: Domain!
1010
- id: ID!
1011
- routing: String!
1012
- updatedAt: DateTimeISO
1013
- updater: User
1014
- user: User!
1015
- }
1016
-
1017
- type FavoriteList {
1018
- items: [Favorite!]!
1019
- total: Int!
1020
- }
1021
-
1022
- input Filter {
1023
- name: String!
1024
- operator: String!
1025
- relation: Boolean
1026
- value: Any
1027
- }
1028
-
1029
- """Entity for Font"""
1030
- type Font {
1031
- active: Boolean!
1032
- createdAt: DateTimeISO
1033
- creator: User
1034
- domain: Domain!
1035
- files: [Attachment!]
1036
- id: ID!
1037
- name: String!
1038
- path: String
1039
- provider: String!
1040
- updatedAt: DateTimeISO
1041
- updater: User
1042
- uri: String
1043
- }
1044
-
1045
- type FontList {
1046
- items: [Font!]!
1047
- total: Int!
1048
- }
1049
-
1050
- input FontPatch {
1051
- active: Boolean
1052
- files: [Upload!]
1053
- name: String
1054
- path: String
1055
- provider: String
1056
- uri: String
1057
- }
1058
-
1059
- type GrantedRole {
1060
- domain: Domain!
1061
- id: ID!
1062
- role: Role!
1063
- }
1064
-
1065
- """Entity for Board Management Group"""
1066
- type Group {
1067
- boards: [Board!]
1068
- createdAt: DateTimeISO
1069
- creator: User
1070
- description: String
1071
- domain: Domain
1072
- id: ID!
1073
- name: String!
1074
- updatedAt: DateTimeISO
1075
- updater: User
1076
- }
1077
-
1078
- type GroupList {
1079
- items: [Group!]!
1080
- total: Int!
1081
- }
1082
-
1083
- input GroupPatch {
1084
- description: String
1085
- name: String
1086
- }
1087
-
1088
- input ImageCompletionInput {
1089
- count: Float!
1090
- description: String!
1091
- size: String!
1092
- }
1093
-
1094
- type ImageCompletionOutput {
1095
- images: String
1096
- }
1097
-
1098
- enum InheritedValueType {
1099
- Include
1100
- None
1101
- Only
1102
- }
1103
-
1104
- type Invitation {
1105
- createdAt: DateTimeISO
1106
- creator: User
1107
- email: EmailAddress!
1108
- id: ID!
1109
- reference: String!
1110
- token: String!
1111
- type: String!
1112
- updatedAt: DateTimeISO
1113
- updater: User
1114
- }
1115
-
1116
- type InvitationList {
1117
- items: [Invitation!]
1118
- total: Int
1119
- }
1120
-
1121
- """
1122
- A field whose value is a JSON Web Token (JWT): https://jwt.io/introduction.
1123
- """
1124
- scalar JWT
1125
-
1126
- type Log {
1127
- """log level (error, warning, info, ..)"""
1128
- level: String!
1129
-
1130
- """log body message"""
1131
- message: String!
1132
-
1133
- """the source of the log"""
1134
- source: Object!
1135
-
1136
- """timestamp the log occurred"""
1137
- timestamp: String!
1138
- }
1139
-
1140
- type LoginHistory {
1141
- accessDomain: Domain!
1142
- accessUser: User!
1143
- accessedAt: DateTimeISO
1144
- accessorIp: String
1145
- id: ID!
1146
- }
1147
-
1148
- type LoginHistoryList {
1149
- items: [LoginHistory!]!
1150
- total: Int!
1151
- }
1152
-
1153
- """Entity for Menu"""
1154
- type Menu {
1155
- buttons: [MenuButton!]!
1156
- category: String
1157
- children(permittedOnly: Boolean! = false): [Menu!]!
1158
- columns: [MenuColumn!]!
1159
- createdAt: DateTimeISO
1160
- creator: User
1161
- description: String
1162
- detailFormId: String
1163
- detailLayout: String
1164
- domain: Domain!
1165
- fixedColumns: Float
1166
- gridSaveUrl: String
1167
- hiddenFlag: Boolean
1168
- iconPath: String
1169
- id: ID!
1170
- idField: String
1171
- itemsProp: String
1172
- menuType: String
1173
- name: String
1174
- pagination: Boolean
1175
- parent: Menu
1176
- rank: Float
1177
- resourceId: String
1178
- resourceName: String
1179
- resourceType: String
1180
- resourceUrl: String
1181
- role: Role
1182
- roles: [Role!]
1183
- routing: String
1184
- routingType: String
1185
- template: String
1186
- titleField: String
1187
- totalProp: String
1188
- updatedAt: DateTimeISO
1189
- updater: User
1190
- }
1191
-
1192
- """Entity for MenuButton"""
1193
- type MenuButton {
1194
- auth: String
1195
- createdAt: DateTimeISO
1196
- creator: User
1197
- domain: Domain!
1198
- icon: String
1199
- id: ID!
1200
- logic: String
1201
- menu: Menu
1202
- rank: Float
1203
- style: String
1204
- text: String
1205
- updatedAt: DateTimeISO
1206
- updater: User
1207
- }
1208
-
1209
- type MenuButtonList {
1210
- items: [MenuButton!]!
1211
- total: Int!
1212
- }
1213
-
1214
- input MenuButtonPatch {
1215
- auth: String
1216
- icon: String
1217
- logic: String
1218
- menu: String
1219
- rank: Int
1220
- style: String
1221
- text: String
1222
- }
1223
-
1224
- """Entity for MenuColumn"""
1225
- type MenuColumn {
1226
- colSize: Float
1227
- colType: String
1228
- createdAt: DateTimeISO
1229
- creator: User
1230
- defVal: String
1231
- description: String
1232
- domain: Domain!
1233
- extField: Boolean
1234
- formEditor: String
1235
- formFormat: String
1236
- formValidator: String
1237
- gridAlign: String
1238
- gridEditor: String
1239
- gridFormat: String
1240
- gridRank: Float
1241
- gridValidator: String
1242
- gridWidth: Float
1243
- id: ID!
1244
- ignoreOnSave: Boolean
1245
- menu: Menu
1246
- name: String!
1247
- nullable: Boolean
1248
- rangeVal: String
1249
- rank: Float
1250
- refName: String
1251
- refParams: String
1252
- refRelated: String
1253
- refType: String
1254
- refUrl: String
1255
- reverseSort: Boolean
1256
- searchEditor: String
1257
- searchInitVal: String
1258
- searchName: String
1259
- searchOper: String
1260
- searchRank: Float
1261
- sortRank: Float
1262
- term: String
1263
- uniqRank: Float
1264
- updatedAt: DateTimeISO
1265
- updater: User
1266
- virtualField: Boolean
1267
- }
1268
-
1269
- type MenuColumnList {
1270
- items: [MenuColumn!]!
1271
- total: Int!
1272
- }
1273
-
1274
- input MenuColumnPatch {
1275
- colSize: Int
1276
- colType: String
1277
- defVal: String
1278
- description: String
1279
- extField: Boolean
1280
- formEditor: String
1281
- formFormat: String
1282
- formValidator: String
1283
- gridAlign: String
1284
- gridEditor: String
1285
- gridFormat: String
1286
- gridRank: Int
1287
- gridValidator: String
1288
- gridWidth: Int
1289
- ignoreOnSave: Boolean
1290
- menu: String
1291
- name: String
1292
- nullable: Boolean
1293
- rangeVal: String
1294
- rank: Int
1295
- refName: String
1296
- refParams: String
1297
- refRelated: String
1298
- refType: String
1299
- refUrl: String
1300
- reverseSort: Boolean
1301
- searchEditor: String
1302
- searchInitVal: String
1303
- searchName: String
1304
- searchOper: String
1305
- searchRank: Int
1306
- sortRank: Int
1307
- term: String
1308
- uniqRank: Int
1309
- virtualField: Boolean
1310
- }
1311
-
1312
- """Entity for MenuDetail"""
1313
- type MenuDetail {
1314
- association: String
1315
- buttons: [MenuDetailButton!]
1316
- columns: [MenuDetailColumn!]
1317
- createdAt: DateTimeISO
1318
- creator: User
1319
- customView: String
1320
- dataProp: String
1321
- domain: Domain!
1322
- entityId: String
1323
- id: ID!
1324
- masterField: String
1325
- menu: Menu
1326
- name: String!
1327
- saveUrl: String
1328
- searchUrl: String
1329
- updatedAt: DateTimeISO
1330
- updater: User
1331
- viewSection: String
1332
- }
1333
-
1334
- """Entity for MenuDetailButton"""
1335
- type MenuDetailButton {
1336
- createdAt: DateTimeISO
1337
- creator: User
1338
- domain: Domain!
1339
- icon: String
1340
- id: ID!
1341
- logic: String
1342
- menuDetail: MenuDetail
1343
- rank: Float
1344
- style: String
1345
- text: String
1346
- updatedAt: DateTimeISO
1347
- updater: User
1348
- }
1349
-
1350
- type MenuDetailButtonList {
1351
- items: [MenuDetailButton!]!
1352
- total: Int!
1353
- }
1354
-
1355
- input MenuDetailButtonPatch {
1356
- icon: String
1357
- logic: String
1358
- menuDetail: String
1359
- rank: Int
1360
- style: String
1361
- text: String
1362
- }
1363
-
1364
- """Entity for MenuDetailColumn"""
1365
- type MenuDetailColumn {
1366
- colSize: Float
1367
- colType: String
1368
- createdAt: DateTimeISO
1369
- creator: User
1370
- defVal: String
1371
- description: String
1372
- domain: Domain!
1373
- extField: Boolean
1374
- formEditor: String
1375
- formFormat: String
1376
- formValidator: String
1377
- gridAlign: String
1378
- gridEditor: String
1379
- gridFormat: String
1380
- gridRank: Float
1381
- gridValidator: String
1382
- gridWidth: Float
1383
- id: ID!
1384
- ignoreOnSave: Boolean
1385
- menuDetail: MenuDetail
1386
- name: String
1387
- nullable: Boolean
1388
- rangeVal: String
1389
- rank: Float
1390
- refName: String
1391
- refParams: String
1392
- refRelated: String
1393
- refType: String
1394
- refUrl: String
1395
- reverseSort: Boolean
1396
- searchEditor: String
1397
- searchInitVal: String
1398
- searchName: String
1399
- searchOper: String
1400
- searchRank: Float
1401
- sortRank: Float
1402
- term: String
1403
- uniqRank: Float
1404
- updatedAt: DateTimeISO
1405
- updater: User
1406
- virtualField: Boolean
1407
- }
1408
-
1409
- type MenuDetailColumnList {
1410
- items: [MenuDetailColumn!]!
1411
- total: Int!
1412
- }
1413
-
1414
- input MenuDetailColumnPatch {
1415
- colSize: Int
1416
- colType: String!
1417
- defVal: String
1418
- description: String
1419
- extField: Boolean
1420
- formEditor: String
1421
- formFormat: String
1422
- formValidator: String
1423
- gridAlign: String
1424
- gridEditor: String
1425
- gridFormat: String
1426
- gridRank: Int
1427
- gridValidator: String
1428
- gridWidth: Int
1429
- ignoreOnSave: Boolean
1430
- menuDetail: String!
1431
- name: String!
1432
- nullable: Boolean
1433
- rangeVal: String
1434
- rank: Int
1435
- refName: String
1436
- refParams: String
1437
- refRelated: String
1438
- refType: String
1439
- refUrl: String
1440
- reverseSort: Boolean
1441
- searchEditor: String
1442
- searchInitVal: String
1443
- searchName: String
1444
- searchOper: String
1445
- searchRank: Int
1446
- sortRank: Int
1447
- term: String
1448
- uniqRank: Int
1449
- virtualField: Boolean
1450
- }
1451
-
1452
- type MenuDetailList {
1453
- items: [MenuDetail!]!
1454
- total: Int!
1455
- }
1456
-
1457
- input MenuDetailPatch {
1458
- association: String
1459
- buttons: [String!]
1460
- columns: [String!]
1461
- customView: String
1462
- dataProp: String
1463
- entityId: String
1464
- masterField: String
1465
- menu: String
1466
- name: String
1467
- saveUrl: String
1468
- searchUrl: String
1469
- viewSection: String
1470
- }
1471
-
1472
- type MenuList {
1473
- items: [Menu!]!
1474
- total: Int!
1475
- }
1476
-
1477
- input MenuPatch {
1478
- buttons: [ObjectRef!]
1479
- category: String
1480
- children: [ObjectRef!]
1481
- columns: [ObjectRef!]
1482
- cuFlag: String
1483
- description: String
1484
- detailFormId: String
1485
- detailLayout: String
1486
- fixedColumns: Int
1487
- gridSaveUrl: String
1488
- hiddenFlag: Boolean
1489
- iconPath: String
1490
- id: ID
1491
- idField: String
1492
- itemsProp: String
1493
- menuType: String
1494
- name: String
1495
- pagination: Boolean
1496
- parent: ObjectRef
1497
- rank: Int
1498
- resourceId: String
1499
- resourceName: String
1500
- resourceType: String
1501
- resourceUrl: String
1502
- role: ObjectRef
1503
- routing: String
1504
- routingType: String
1505
- template: String
1506
- titleField: String
1507
- totalProp: String
1508
- }
1509
-
1510
- type Mutation {
1511
- """To activate user"""
1512
- activateUser(userId: String!): Boolean!
1513
-
1514
- """
1515
- Attaches an existing contact to an employee. The contact is identified by its ID and the employee is identified by their ID.
1516
- """
1517
- attachContact(contactId: String!, id: String!): Employee!
1518
- cancelInvitation(email: EmailAddress!, reference: String!, type: String!): Boolean!
1519
-
1520
- """To clear translations cache"""
1521
- clearTranslationsCache: Boolean!
1522
-
1523
- """To clone a Board from existing Board"""
1524
- cloneBoard(id: String!, patch: BoardPatch!, targetGroupId: String, targetSubdomain: String!): Board!
1525
-
1526
- """To connect a connection"""
1527
- connectConnection(name: String!): Connection!
1528
-
1529
- """To import multiple scenarios"""
1530
- copyScenarios(ids: [String!]!): [Scenario!]!
1531
-
1532
- """To create new appliance"""
1533
- createAppliance(appliance: NewAppliance!): Appliance!
1534
-
1535
- """To create new application"""
1536
- createApplication(application: NewApplication!): Application!
1537
-
1538
- """To create new ApprovalLine"""
1539
- createApprovalLine(approvalLine: NewApprovalLine!): ApprovalLine!
1540
- createAttachment(attachment: NewAttachment!): Attachment!
1541
- createAttachments(attachments: [NewAttachment!]!): [Attachment!]!
1542
-
1543
- """To create new AttributeSet"""
1544
- createAttributeSet(attribute: NewAttributeSet!): AttributeSet!
1545
-
1546
- """To create new AuthProvider"""
1547
- createAuthProvider(authProvider: NewAuthProvider!): AuthProvider!
1548
-
1549
- """To create new Board"""
1550
- createBoard(board: NewBoard!): Board!
1551
-
1552
- """To create new BoardTemplate"""
1553
- createBoardTemplate(boardTemplate: NewBoardTemplate!): BoardTemplate!
1554
-
1555
- """To create new CommonCode"""
1556
- createCommonCode(commonCode: NewCommonCode!): CommonCode!
1557
-
1558
- """To create new CommonCodeDetail"""
1559
- createCommonCodeDetail(commonCodeDetail: NewCommonCodeDetail!): CommonCodeDetail!
1560
-
1561
- """To create new connection"""
1562
- createConnection(connection: NewConnection!): Connection!
1563
-
1564
- """To create new Contact"""
1565
- createContact(contact: NewContact!): Contact!
1566
-
1567
- """To create new Department"""
1568
- createDepartment(department: NewDepartment!): Department!
1569
-
1570
- """To create domain (Only superuser is granted this privilege.)"""
1571
- createDomain(domainInput: DomainPatch!): Domain!
1572
-
1573
- """
1574
- 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.
1575
- """
1576
- createEmployee(employee: NewEmployee!): Employee!
1577
-
1578
- """To create new Entity"""
1579
- createEntity(entity: NewEntity!): Entity!
1580
-
1581
- """To create new EntityColumn"""
1582
- createEntityColumn(entityColumn: NewEntityColumn!): EntityColumn!
1583
-
1584
- """To create new Favorite"""
1585
- createFavorite(favorite: NewFavorite!): Favorite!
1586
-
1587
- """To create new Font"""
1588
- createFont(font: NewFont!): Font!
1589
-
1590
- """To create new Group"""
1591
- createGroup(group: NewGroup!): Group
1592
-
1593
- """To create new Menu"""
1594
- createMenu(menu: NewMenu!): Menu!
1595
-
1596
- """To create new MenuButton"""
1597
- createMenuButton(menuButton: NewMenuButton!): MenuButton!
1598
-
1599
- """To create new MenuColumn"""
1600
- createMenuColumn(menuColumn: NewMenuColumn!): MenuColumn!
1601
-
1602
- """To create new MenuDetail"""
1603
- createMenuDetail(menuDetail: NewMenuDetail!): MenuDetail!
1604
-
1605
- """To create new MenuDetailButton"""
1606
- createMenuDetailButton(menuDetailButton: NewMenuDetailButton!): MenuDetailButton!
1607
-
1608
- """To create new MenuDetailColumn"""
1609
- createMenuDetailColumn(menuDetailColumn: NewMenuDetailColumn!): MenuDetailColumn!
1610
-
1611
- """To create new ApprovalLine for current user"""
1612
- createMyApprovalLine(approvalLine: NewApprovalLine!): ApprovalLine!
1613
-
1614
- """To create my new PagePreference"""
1615
- createMyPagePreference(pagePreference: NewPagePreference!): PagePreference!
1616
-
1617
- """To create new Notification"""
1618
- createNotification(notification: NewNotification!): Notification!
1619
-
1620
- """To create new NotificationRule"""
1621
- createNotificationRule(notificationRule: NewNotificationRule!): NotificationRule!
1622
-
1623
- """To create new Oauth2Client"""
1624
- createOauth2Client(oauth2Client: NewOauth2Client!): Oauth2Client!
1625
-
1626
- """To create new PDFRelease"""
1627
- createPDFRelease(pdfRelease: NewPDFRelease!): PDFRelease!
1628
-
1629
- """To create new PDFTemplate"""
1630
- createPDFTemplate(pdfTemplate: NewPDFTemplate!): PDFTemplate!
1631
-
1632
- """To create new PayloadLog"""
1633
- createPayloadLog(payloadLog: NewPayloadLog!): PayloadLog!
1634
-
1635
- """To create new PlayGroup"""
1636
- createPlayGroup(playGroup: NewPlayGroup!): PlayGroup!
1637
-
1638
- """To create new PrinterDevice"""
1639
- createPrinterDevice(printerDevice: NewPrinterDevice!): PrinterDevice!
1640
-
1641
- """To create new privilege"""
1642
- createPrivilege(privilege: NewPrivilege!): Privilege!
1643
-
1644
- """To create new user"""
1645
- createRole(role: NewRole!): User!
1646
-
1647
- """To create new scenario"""
1648
- createScenario(scenario: NewScenario!): Scenario!
1649
-
1650
- """To create new Setting"""
1651
- createSetting(setting: NewSetting!): Setting!
1652
-
1653
- """To create new StateRegister"""
1654
- createStateRegister(stateRegister: NewStateRegister!): StateRegister!
1655
-
1656
- """To create new Terminology"""
1657
- createTerminology(terminology: NewTerminology!): Terminology!
1658
-
1659
- """To create new Theme"""
1660
- createTheme(theme: NewTheme!): Theme!
1661
-
1662
- """To create new user"""
1663
- createUser(user: NewUser!): User!
1664
-
1665
- """To create new UserPreference"""
1666
- createUserPreference(preference: NewUserPreference!): UserPreference!
1667
- deleteAppBinding(id: String!): Boolean!
1668
-
1669
- """To delete appliance"""
1670
- deleteAppliance(id: String!): Boolean!
1671
-
1672
- """To delete application"""
1673
- deleteApplication(id: String!): Boolean!
1674
-
1675
- """To delete ApprovalLine"""
1676
- deleteApprovalLine(id: String!): Boolean!
1677
-
1678
- """To delete multiple ApprovalLines"""
1679
- deleteApprovalLines(ids: [String!]!): Boolean!
1680
- deleteAttachment(id: String!): Boolean!
1681
- deleteAttachmentsByRef(refBys: [String!]!, refType: String): Boolean!
1682
-
1683
- """To delete AttributeSet"""
1684
- deleteAttributeSet(id: String!): Boolean!
1685
-
1686
- """To delete multiple AttributeSets"""
1687
- deleteAttributeSets(ids: [String!]!): Boolean!
1688
-
1689
- """To delete AuthProvider"""
1690
- deleteAuthProvider(id: String!): Boolean!
1691
- deleteAuthProviders(ids: [String!]!): Boolean!
1692
-
1693
- """To delete Board"""
1694
- deleteBoard(id: String!): Boolean!
1695
-
1696
- """To delete BoardTemplate"""
1697
- deleteBoardTemplate(id: String!): Boolean!
1698
-
1699
- """To delete CommonCode"""
1700
- deleteCommonCode(id: String!): Boolean!
1701
-
1702
- """To delete CommonCodeDetail"""
1703
- deleteCommonCodeDetail(id: String!): Boolean!
1704
-
1705
- """To delete multiple CommonCodeDetails"""
1706
- deleteCommonCodeDetails(ids: [String!]!): Boolean!
1707
-
1708
- """To delete multiple CommonCodes"""
1709
- deleteCommonCodes(ids: [String!]!): Boolean!
1710
-
1711
- """To delete connection"""
1712
- deleteConnection(name: String!): Boolean!
1713
-
1714
- """To delete multiple connections"""
1715
- deleteConnections(names: [String!]!): Boolean!
1716
-
1717
- """To delete Contact"""
1718
- deleteContact(id: String!): Boolean!
1719
-
1720
- """To delete multiple Contacts"""
1721
- deleteContacts(ids: [String!]!): Boolean!
1722
-
1723
- """To delete Department"""
1724
- deleteDepartment(id: String!): Boolean!
1725
-
1726
- """To delete multiple Departments"""
1727
- deleteDepartments(ids: [String!]!): Boolean!
1728
-
1729
- """To delete domain (Only superuser is granted this privilege.)"""
1730
- deleteDomain(name: String!): Domain!
1731
-
1732
- """To delete domain user"""
1733
- deleteDomainUser(email: EmailAddress!): Boolean!
1734
-
1735
- """To delete multiple domains (Only superuser is granted this privilege.)"""
1736
- deleteDomains(names: [String!]!): Boolean!
1737
-
1738
- """
1739
- Deletes an employee record identified by the given ID. Also deletes any attachments associated with the employee.
1740
- """
1741
- deleteEmployee(id: String!): Boolean!
1742
-
1743
- """
1744
- Deletes multiple employee records identified by the given IDs. Also deletes any attachments associated with each employee.
1745
- """
1746
- deleteEmployees(ids: [String!]!): Boolean!
1747
-
1748
- """To delete multiple Entities"""
1749
- deleteEntities(ids: [String!]!): Boolean!
1750
-
1751
- """To delete Entity"""
1752
- deleteEntity(id: String!): Boolean!
1753
-
1754
- """To delete EntityColumn"""
1755
- deleteEntityColumn(id: String!): Boolean!
1756
-
1757
- """To delete multiple EntityColumns"""
1758
- deleteEntityColumns(ids: [String!]!): Boolean!
1759
-
1760
- """To delete Favorite"""
1761
- deleteFavorite(routing: String!): Boolean!
1762
-
1763
- """To delete Font"""
1764
- deleteFont(id: String!): Boolean!
1765
-
1766
- """To delete Group"""
1767
- deleteGroup(id: String!): Boolean!
1768
-
1769
- """To delete Menu"""
1770
- deleteMenu(id: String!): Boolean!
1771
-
1772
- """To delete MenuButton"""
1773
- deleteMenuButton(id: String!): Boolean!
1774
-
1775
- """To delete multiple MenuButtons"""
1776
- deleteMenuButtons(ids: [String!]!): Boolean!
1777
-
1778
- """To delete MenuColumn"""
1779
- deleteMenuColumn(id: String!): Boolean!
1780
-
1781
- """To delete multiple MenuColumns"""
1782
- deleteMenuColumns(ids: [String!]!): Boolean!
1783
-
1784
- """To delete MenuDetail"""
1785
- deleteMenuDetail(id: String!): Boolean!
1786
-
1787
- """To delete MenuDetailButton"""
1788
- deleteMenuDetailButton(id: String!): Boolean!
1789
-
1790
- """To delete multiple MenuDetailButtons"""
1791
- deleteMenuDetailButtons(ids: [String!]!): Boolean!
1792
-
1793
- """To delete MenuDetailColumn"""
1794
- deleteMenuDetailColumn(id: String!): Boolean!
1795
-
1796
- """To delete multiple MenuDetailColumns"""
1797
- deleteMenuDetailColumns(ids: [String!]!): Boolean!
1798
-
1799
- """To delete multiple MenuDetails"""
1800
- deleteMenuDetails(ids: [String!]!): Boolean!
1801
-
1802
- """To delete multiple Menus"""
1803
- deleteMenus(ids: [String!]!): Boolean!
1804
-
1805
- """To delete ApprovalLine for current user"""
1806
- deleteMyApprovalLine(id: String!): Boolean!
1807
-
1808
- """To delete multiple ApprovalLines for current user"""
1809
- deleteMyApprovalLines(ids: [String!]!): Boolean!
1810
-
1811
- """To delete my PagePreference"""
1812
- deleteMyPagePreference(element: String!, page: String!): Boolean!
1813
-
1814
- """To delete my preference"""
1815
- deleteMyUserPreference(element: String!, key: String!): Boolean!
1816
-
1817
- """To delete Notification"""
1818
- deleteNotification(id: String!): Boolean!
1819
-
1820
- """To delete NotificationRule"""
1821
- deleteNotificationRule(id: String!): Boolean!
1822
-
1823
- """To delete multiple NotificationRules"""
1824
- deleteNotificationRules(ids: [String!]!): Boolean!
1825
-
1826
- """To delete multiple Notificationes"""
1827
- deleteNotificationes(ids: [String!]!): Boolean!
1828
-
1829
- """To delete Oauth2Client"""
1830
- deleteOauth2Client(id: String!): Boolean!
1831
-
1832
- """To delete multiple Oauth2Clients"""
1833
- deleteOauth2Clients(ids: [String!]!): Boolean!
1834
-
1835
- """To delete PDFRelease"""
1836
- deletePDFRelease(id: String!): Boolean!
1837
-
1838
- """To delete multiple PDFReleases"""
1839
- deletePDFReleases(ids: [String!]!): Boolean!
1840
-
1841
- """To delete PDFTemplate"""
1842
- deletePDFTemplate(id: String!): Boolean!
1843
-
1844
- """To delete multiple PDFTemplates"""
1845
- deletePDFTemplates(ids: [String!]!): Boolean!
1846
-
1847
- """To delete PagePreference"""
1848
- deletePagePreference(id: String!): Boolean!
1849
-
1850
- """To delete multiple PagePreferences"""
1851
- deletePagePreferences(ids: [String!]!): Boolean!
1852
-
1853
- """To delete multiple partnerSettings"""
1854
- deletePartnerSettings(ids: [String!]!): Boolean!
1855
-
1856
- """To delete PayloadLog"""
1857
- deletePayloadLog(id: String!): Boolean!
1858
-
1859
- """To delete multiple payloadLogs"""
1860
- deletePayloadLogs(ids: [String!]!): Boolean!
1861
-
1862
- """To delete PlayGroup"""
1863
- deletePlayGroup(id: String!): Boolean!
1864
-
1865
- """To delete PrinterDevice"""
1866
- deletePrinterDevice(id: String!): Boolean!
1867
-
1868
- """To delete multiple printerDevices"""
1869
- deletePrinterDevices(ids: [String!]!): Boolean!
1870
-
1871
- """To delete privilege"""
1872
- deletePrivilege(category: String!, name: String!): Boolean!
1873
-
1874
- """To delete role"""
1875
- deleteRole(id: String!): Boolean!
1876
-
1877
- """To delete multiple roles"""
1878
- deleteRoles(ids: [String!]!): Boolean!
1879
-
1880
- """To delete scenario"""
1881
- deleteScenario(name: String!): Boolean!
1882
-
1883
- """To delete multiple scenarios"""
1884
- deleteScenarios(ids: [String!]!): Boolean!
1885
-
1886
- """To delete Setting"""
1887
- deleteSetting(name: String!): Boolean!
1888
-
1889
- """To delete multiple settings"""
1890
- deleteSettings(names: [String!]!): Boolean!
1891
-
1892
- """To delete StateRegister"""
1893
- deleteStateRegister(id: String!): Boolean!
1894
-
1895
- """To delete multiple StateRegisters"""
1896
- deleteStateRegisters(ids: [String!]!): Boolean!
1897
-
1898
- """To delete multiple steps"""
1899
- deleteSteps(ids: [String!]!): Boolean!
1900
-
1901
- """To delete multiple Terminologies"""
1902
- deleteTerminologies(ids: [String!]!): Boolean!
1903
-
1904
- """To delete Terminology"""
1905
- deleteTerminology(id: String!): Boolean!
1906
-
1907
- """To delete Theme"""
1908
- deleteTheme(id: String!): Boolean!
1909
-
1910
- """To delete multiple Themes"""
1911
- deleteThemes(ids: [String!]!): Boolean!
1912
-
1913
- """To delete a user"""
1914
- deleteUser(email: EmailAddress!): Boolean!
1915
-
1916
- """To delete UserPreference"""
1917
- deleteUserPreference(id: String!): Boolean!
1918
-
1919
- """To delete multiple UserPreferences"""
1920
- deleteUserPreferences(ids: [String!]!): Boolean!
1921
-
1922
- """To delete some users"""
1923
- deleteUsers(emails: [String!]!): Boolean!
1924
-
1925
- """
1926
- Detaches an existing contact from an employee. The employee is identified by their ID.
1927
- """
1928
- detachContact(id: String!): Employee!
1929
-
1930
- """To disconnect a connection"""
1931
- disconnectConnection(name: String!): Connection!
1932
- domainRegister(domainInput: DomainGeneratorInput!): Domain!
1933
- domainUserRoleRegister(newDomainInfo: DomainUserRoleInput!): Domain!
1934
- generateApplianceSecret(id: String!): Appliance!
1935
- generateApplicationSecret(id: String!): Application!
1936
- generateUploadURL(type: String!): UploadURL!
1937
-
1938
- """To get oauth2 auth URL"""
1939
- getOauth2AuthUrl(id: String!): String!
1940
- grantRoles(customerId: String!, roles: [RolePatch!]!): Boolean!
1941
-
1942
- """To import multiple ApprovalLines"""
1943
- importApprovalLines(approvalLines: [ApprovalLinePatch!]!): Boolean!
1944
-
1945
- """To import some Attachments"""
1946
- importAttachments(file: Upload!): [Attachment!]!
1947
-
1948
- """To import multiple AttributeSets"""
1949
- importAttributeSets(attributes: [AttributeSetPatch!]!): Boolean!
1950
-
1951
- """To import some Boards"""
1952
- importBoards(files: [Upload!]!, groupId: String!, overwrite: Boolean!): [Board!]!
1953
-
1954
- """To import multiple CommonCodeDetails"""
1955
- importCommonCodeDetails(commonCodeDetails: [CommonCodeDetailPatch!]!): Boolean!
1956
-
1957
- """To import multiple CommonCodes"""
1958
- importCommonCodes(commonCodes: [CommonCodePatch!]!): Boolean!
1959
-
1960
- """To import multiple connections"""
1961
- importConnections(connections: [ConnectionPatch!]!): Boolean!
1962
-
1963
- """To import multiple Contacts"""
1964
- importContacts(contacts: [ContactPatch!]!): Boolean!
1965
-
1966
- """To import multiple Departments"""
1967
- importDepartments(departments: [DepartmentPatch!]!): Boolean!
1968
-
1969
- """
1970
- Imports multiple employee records into the system. Each employee record must be provided in the EmployeePatch format.
1971
- """
1972
- importEmployees(employees: [EmployeePatch!]!): Boolean!
1973
-
1974
- """To import multiple MenuButtons"""
1975
- importMenuButtons(menuButtons: [MenuButtonPatch!]!): Boolean!
1976
-
1977
- """To import multiple MenuColumns"""
1978
- importMenuColumns(menuColumns: [MenuColumnPatch!]!): Boolean!
1979
-
1980
- """To import multiple MenuDetailButtons"""
1981
- importMenuDetailButtons(menuDetailButtons: [MenuDetailButtonPatch!]!): Boolean!
1982
-
1983
- """To import multiple MenuDetailColumns"""
1984
- importMenuDetailColumns(menuDetailColumns: [MenuDetailColumnPatch!]!): Boolean!
1985
-
1986
- """To import multiple MenuDetails"""
1987
- importMenuDetails(menuDetails: [MenuDetailPatch!]!): Boolean!
1988
-
1989
- """To import multiple Menus"""
1990
- importMenus(menus: [MenuPatch!]!): Boolean!
1991
-
1992
- """To import multiple NotificationRules"""
1993
- importNotificationRules(notificationRules: [NotificationRulePatch!]!): Boolean!
1994
-
1995
- """To import multiple Oauth2Clients"""
1996
- importOauth2Clients(oauth2Clients: [Oauth2ClientPatch!]!): Boolean!
1997
-
1998
- """To import multiple PDFReleases"""
1999
- importPDFReleases(pdfReleases: [PDFReleasePatch!]!): Boolean!
2000
-
2001
- """To import multiple PDFTemplates"""
2002
- importPDFTemplates(pdfTemplates: [PDFTemplatePatch!]!): Boolean!
2003
-
2004
- """To import multiple scenarios"""
2005
- importScenarios(scenarios: [ScenarioPatch!]!): Boolean!
2006
-
2007
- """To import multiple StateRegisters"""
2008
- importStateRegisters(stateRegisters: [StateRegisterPatch!]!): Boolean!
2009
-
2010
- """To import multiple Terminologies"""
2011
- importTerminologies(terminologies: [TerminologyPatch!]!): Boolean!
2012
-
2013
- """To import multiple Themes"""
2014
- importThemes(themes: [ThemePatch!]!): Boolean!
2015
-
2016
- """To inactivate user"""
2017
- inactivateUser(userId: String!): Boolean!
2018
- inviteCustomer(customerDomainName: String!): Boolean!
2019
-
2020
- """To invite new user"""
2021
- inviteUser(email: EmailAddress!): Boolean!
2022
-
2023
- """To make the board to join the group"""
2024
- joinGroup(boardIds: [String!]!, id: String!): Group!
2025
-
2026
- """To make the board to join the play group"""
2027
- joinPlayGroup(boardIds: [String!]!, id: String!): PlayGroup!
2028
-
2029
- """To make the board to leave from the play group"""
2030
- leavePlayGroup(boardIds: [String!]!, id: String!): PlayGroup!
2031
- multipleUpload(files: [Upload!]!): [Attachment!]!
2032
-
2033
- """To refresh oauth2 access token"""
2034
- refreshOauth2AccessToken(id: String!): Oauth2Client!
2035
-
2036
- """To register a board as a board template with the given ID"""
2037
- registerBoardAsTemplate(
2038
- """description of board template to be regiestered"""
2039
- description: String!
2040
-
2041
- """board Id to be regiestered"""
2042
- id: String!
2043
-
2044
- """name of board template to be regiestered"""
2045
- name: String!
2046
-
2047
- """visibility of board template to be regiestered"""
2048
- visibility: String!
2049
- ): BoardTemplate!
2050
-
2051
- """
2052
- Registers an existing employee as a system user, granting them access to the system. The employee is identified by their ID.
2053
- """
2054
- registerEmployeeAsSystemUser(
2055
- """Employee Id"""
2056
- employeeId: String!
2057
- ): Boolean!
2058
-
2059
- """To release a Board"""
2060
- releaseBoard(id: String!): Board!
2061
- renewApplicationAccessToken(id: String!, scope: String!): AccessToken!
2062
-
2063
- """To modify board order of a PlayGroup"""
2064
- reorderPlayGroup(boardIds: [String!]!, id: String!): PlayGroup!
2065
-
2066
- """To reset password to default"""
2067
- resetPasswordToDefault(userId: String!): Boolean!
2068
-
2069
- """To revert Board version"""
2070
- revertBoardVersion(id: String!, version: Float!): Board!
2071
-
2072
- """
2073
- To run new scenario instance and will return the result after the scenario stop.
2074
- """
2075
- runScenario(instanceName: String, scenarioName: String!, variables: Object): ScenarioInstanceRunResult!
2076
- sendInvitation(email: EmailAddress!, reference: String!, type: String!): Invitation!
2077
- singleUpload(file: Upload!): Attachment!
2078
-
2079
- """To start new scenario instance"""
2080
- startScenario(instanceName: String, scenarioName: String!, variables: Object): ScenarioInstance!
2081
-
2082
- """To start posting scenario based on the schedule of the given scenario"""
2083
- startScenarioSchedule(scenarioId: String!): Scenario!
2084
-
2085
- """To start new scenario instance"""
2086
- stopScenario(instanceName: String): ScenarioInstance
2087
-
2088
- """To stop posting scenario based on the schedule of the given scenario"""
2089
- stopScenarioSchedule(scenarioId: String!): Scenario
2090
-
2091
- """To subscribe azure active directory users"""
2092
- subscribeAzureADUsers: Boolean!
2093
-
2094
- """To subscribe google users"""
2095
- subscribeGoogleUsers: Boolean!
2096
-
2097
- """To synchronize auth-providers users"""
2098
- synchronizeAuthProviderUsers(id: String!): Boolean!
2099
-
2100
- """
2101
- To synchronize privilege master from graphql directives. Only superuser is permitted.
2102
- """
2103
- synchronizePrivilegeMaster(privilege: NewPrivilege!): Boolean!
2104
- terminateContract(partnerName: String!): Boolean!
2105
-
2106
- """To transfer owner of domain"""
2107
- transferOwner(email: EmailAddress!): Boolean!
2108
- updateAppliance(id: String!, patch: AppliancePatch!): Appliance!
2109
- updateApplication(id: String!, patch: ApplicationPatch!): Application!
2110
-
2111
- """To modify ApprovalLine information"""
2112
- updateApprovalLine(id: String!, patch: ApprovalLinePatch!): ApprovalLine!
2113
- updateAttachment(id: String!, patch: AttachmentPatch!): Attachment!
2114
-
2115
- """To modify AttributeSet information"""
2116
- updateAttributeSet(id: String!, patch: AttributeSetPatch!): AttributeSet!
2117
-
2118
- """To modify AuthProvider information"""
2119
- updateAuthProvider(id: String!, patch: AuthProviderPatch!): AuthProvider!
2120
-
2121
- """To modify Board information"""
2122
- updateBoard(id: String!, patch: BoardPatch!): Board!
2123
-
2124
- """To modify BoardTemplate information"""
2125
- updateBoardTemplate(id: String!, patch: BoardTemplatePatch!): BoardTemplate!
2126
-
2127
- """To modify CommonCode information"""
2128
- updateCommonCode(name: String!, patch: CommonCodePatch!): CommonCode!
2129
-
2130
- """To modify CommonCodeDetail information"""
2131
- updateCommonCodeDetail(id: String!, patch: CommonCodeDetailPatch!): CommonCodeDetail!
2132
-
2133
- """To modify connection information"""
2134
- updateConnection(name: String!, patch: ConnectionPatch!): Connection!
2135
-
2136
- """To modify Contact information"""
2137
- updateContact(id: String!, patch: ContactPatch!): Contact!
2138
-
2139
- """To modify Department information"""
2140
- updateDepartment(id: String!, patch: DepartmentPatch!): Department!
2141
-
2142
- """To update domain (Only superuser is granted this privilege.)"""
2143
- updateDomain(name: String!, patch: DomainPatch!): Domain!
2144
-
2145
- """To update multiple domains (Only superuser is granted this privilege.)"""
2146
- updateDomains(patches: [DomainPatch!]!): Boolean!
2147
-
2148
- """
2149
- 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.
2150
- """
2151
- updateEmployee(id: String!, patch: EmployeePatch!): Employee!
2152
-
2153
- """To modify Entity' information"""
2154
- updateEntity(id: String!, patch: EntityPatch!): Entity!
2155
-
2156
- """To modify EntityColumn information"""
2157
- updateEntityColumn(id: String!, patch: EntityColumnPatch!): EntityColumn!
2158
-
2159
- """To modify Font information"""
2160
- updateFont(id: String!, patch: FontPatch!): Font!
2161
-
2162
- """To modify Group information"""
2163
- updateGroup(id: String!, patch: GroupPatch!): Group!
2164
-
2165
- """To modify Menu information"""
2166
- updateMenu(id: String!, patch: MenuPatch!): Menu!
2167
-
2168
- """To modify MenuButton information"""
2169
- updateMenuButton(id: String!, patch: MenuButtonPatch!): MenuButton!
2170
-
2171
- """To modify MenuColumn information"""
2172
- updateMenuColumn(id: String!, patch: MenuColumnPatch!): MenuColumn!
2173
-
2174
- """To modify MenuDetail information"""
2175
- updateMenuDetail(id: String!, patch: MenuDetailPatch!): MenuDetail!
2176
-
2177
- """To modify MenuDetailButton information"""
2178
- updateMenuDetailButton(id: String!, patch: MenuDetailButtonPatch!): MenuDetailButton!
2179
-
2180
- """To modify MenuDetailColumn information"""
2181
- updateMenuDetailColumn(id: String!, patch: MenuDetailColumnPatch!): MenuDetailColumn!
2182
-
2183
- """To modify multiple ApprovalLines' information"""
2184
- updateMultipleApprovalLine(patches: [ApprovalLinePatch!]!): [ApprovalLine!]!
2185
-
2186
- """To modify multiple AttributeSets' information"""
2187
- updateMultipleAttributeSet(patches: [AttributeSetPatch!]!): [AttributeSet!]!
2188
- updateMultipleAuthProvider(patches: [AuthProviderPatch!]!): [AuthProvider!]!
2189
-
2190
- """To modify multiple CommonCodes' information"""
2191
- updateMultipleCommonCode(patches: [CommonCodePatch!]!): [CommonCode!]!
2192
-
2193
- """To modify multiple CommonCodeDetails' information"""
2194
- updateMultipleCommonCodeDetail(patches: [CommonCodeDetailPatch!]!): [CommonCodeDetail!]!
2195
-
2196
- """To modify multiple connections' information"""
2197
- updateMultipleConnection(patches: [ConnectionPatch!]!): [Connection!]!
2198
-
2199
- """To modify multiple Contacts' information"""
2200
- updateMultipleContact(patches: [ContactPatch!]!): [Contact!]!
2201
-
2202
- """To modify multiple Departments' information"""
2203
- updateMultipleDepartment(patches: [DepartmentPatch!]!): [Department!]!
2204
-
2205
- """
2206
- 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".
2207
- """
2208
- updateMultipleEmployee(patches: [EmployeePatch!]!): [Employee!]!
2209
-
2210
- """To modify multiple Entitys' information"""
2211
- updateMultipleEntity(patches: [EntityPatch!]!): [Entity!]!
2212
-
2213
- """To modify multiple Entitys' information"""
2214
- updateMultipleEntityColumn(patches: [EntityColumnPatch!]!): [EntityColumn!]!
2215
-
2216
- """To modify multiple Menus' information"""
2217
- updateMultipleMenu(patches: [MenuPatch!]!): [Menu!]!
2218
-
2219
- """To modify multiple ApprovalLines' information for current user"""
2220
- updateMultipleMyApprovalLine(patches: [ApprovalLinePatch!]!): [ApprovalLine!]!
2221
-
2222
- """To modify multiple Notificationes' information"""
2223
- updateMultipleNotification(patches: [NotificationPatch!]!): [Notification!]!
2224
-
2225
- """To modify multiple NotificationRules' information"""
2226
- updateMultipleNotificationRule(patches: [NotificationRulePatch!]!): [NotificationRule!]!
2227
-
2228
- """To modify multiple PDFReleases' information"""
2229
- updateMultiplePDFRelease(patches: [PDFReleasePatch!]!): [PDFRelease!]!
2230
-
2231
- """To modify multiple PDFTemplates' information"""
2232
- updateMultiplePDFTemplate(patches: [PDFTemplatePatch!]!): [PDFTemplate!]!
2233
-
2234
- """To modify multiple PartnerSettings' information"""
2235
- updateMultiplePartnerSetting(patches: [PartnerSettingPatch!]!): [PartnerSetting!]!
2236
-
2237
- """To modify multiple PayloadLogs' information"""
2238
- updateMultiplePayloadLog(patches: [PayloadLogPatch!]!): [PayloadLog!]!
2239
-
2240
- """To modify multiple PrinterDevices' information"""
2241
- updateMultiplePrinterDevice(patches: [PrinterDevicePatch!]!): [PrinterDevice!]!
2242
-
2243
- """To modify multiple scenarios' information"""
2244
- updateMultipleScenario(patches: [ScenarioPatch!]!): [Scenario!]!
2245
-
2246
- """To modify multiple Settings' information"""
2247
- updateMultipleSetting(patches: [SettingPatch!]!): [Setting!]!
2248
-
2249
- """To modify multiple StateRegisters' information"""
2250
- updateMultipleStateRegister(patches: [StateRegisterPatch!]!): [StateRegister!]!
2251
-
2252
- """To modify multiple steps' in a scenario"""
2253
- updateMultipleStep(patches: [StepPatch!]!, scenarioId: String!): [Step!]!
2254
-
2255
- """To modify multiple Terminologies' information"""
2256
- updateMultipleTerminologies(patches: [TerminologyPatch!]!): [Terminology!]!
2257
-
2258
- """To modify multiple Themes' information"""
2259
- updateMultipleTheme(patches: [ThemePatch!]!): [Theme!]!
2260
-
2261
- """To modify multiple users information"""
2262
- updateMultipleUser(patches: [UserPatch!]!): [User!]!
2263
-
2264
- """To modify ApprovalLine information for current user"""
2265
- updateMyApprovalLine(id: String!, patch: ApprovalLinePatch!): ApprovalLine!
2266
-
2267
- """To create or update my PagePreference"""
2268
- updateMyPagePreference(element: String!, page: String!, preference: Object!): PagePreference!
2269
-
2270
- """To create or update my preference"""
2271
- updateMyUserPreference(key: String!, preference: Object!): UserPreference!
2272
-
2273
- """To modify Notification information"""
2274
- updateNotification(id: String!, patch: NotificationPatch!): Notification!
2275
-
2276
- """To modify NotificationRule information"""
2277
- updateNotificationRule(id: String!, patch: NotificationRulePatch!): NotificationRule!
2278
-
2279
- """To modify Oauth2Client information"""
2280
- updateOauth2Client(id: String!, patch: Oauth2ClientPatch!): Oauth2Client!
2281
-
2282
- """To modify PDFRelease information"""
2283
- updatePDFRelease(id: String!, patch: PDFReleasePatch!): PDFRelease!
2284
-
2285
- """To modify PDFTemplate information"""
2286
- updatePDFTemplate(id: String!, patch: PDFTemplatePatch!): PDFTemplate!
2287
-
2288
- """To modify PayloadLog information"""
2289
- updatePayloadLog(id: String!, patch: PayloadLogPatch!): PayloadLog!
2290
-
2291
- """To modify PlayGroup information"""
2292
- updatePlayGroup(id: String!, patch: PlayGroupPatch!): PlayGroup!
2293
-
2294
- """To modify PrinterDevice information"""
2295
- updatePrinterDevice(id: String!, patch: PrinterDevicePatch!): PrinterDevice!
2296
-
2297
- """To modify privilege information"""
2298
- updatePrivilege(category: String!, name: String!, patch: PrivilegePatch!): Privilege!
2299
-
2300
- """To modify role information"""
2301
- updateRole(id: String!, patch: RolePatch!): Role!
2302
-
2303
- """To update role Menu"""
2304
- updateRoleMenu(isCheckedMenu: Boolean!, roleId: String!, targetMenuId: String!): Menu!
2305
-
2306
- """To update role Menu"""
2307
- updateRoleMenus(isCheckedAll: Boolean!, parentMenuId: String!, roleId: String!): [Menu!]!
2308
-
2309
- """To modify scenario information"""
2310
- updateScenario(name: String!, patch: ScenarioPatch!): Scenario!
2311
-
2312
- """To update secure IP list for domain"""
2313
- updateSecureIPList(iplist: Object!): Object
2314
-
2315
- """To modify Setting information"""
2316
- updateSetting(name: String!, patch: SettingPatch!): Setting!
2317
-
2318
- """To modify StateRegister information"""
2319
- updateStateRegister(id: String!, patch: StateRegisterPatch!): StateRegister!
2320
-
2321
- """To update state of StateRegister by name"""
2322
- updateStateRegisterByName(name: String!, state: Object!): StateRegister!
2323
-
2324
- """To modify Terminology information"""
2325
- updateTerminology(id: String!, patch: TerminologyPatch!): Terminology!
2326
-
2327
- """To modify Theme information"""
2328
- updateTheme(id: String!, patch: ThemePatch!): Theme!
2329
-
2330
- """To modify user information"""
2331
- updateUser(email: EmailAddress!, patch: UserPatch!): User!
2332
-
2333
- """To modify UserPreference information"""
2334
- updateUserPreference(id: String!, patch: UserPreferencePatch!): UserPreference!
2335
-
2336
- """To update roles for a user"""
2337
- updateUserRoles(availableRoles: [ObjectRef!]!, selectedRoles: [ObjectRef!]!, userId: String!): User!
2338
- }
2339
-
2340
- input NewAppliance {
2341
- brand: String!
2342
- description: String
2343
- model: String!
2344
- name: String!
2345
- netmask: String
2346
- serialNo: String!
2347
- }
2348
-
2349
- input NewApplication {
2350
- description: String
2351
- email: EmailAddress
2352
- icon: String
2353
- name: String!
2354
- redirectUrl: String
2355
- type: ApplicationType
2356
- url: String
2357
- webhook: String
2358
- }
2359
-
2360
- input NewApprovalLine {
2361
- description: String
2362
- model: Object
2363
- name: String!
2364
- owner: ObjectRefApprovalLineOwnerType!
2365
- ownerType: ApprovalLineOwnerType!
2366
- }
2367
-
2368
- input NewAttachment {
2369
- category: String
2370
- description: String
2371
- file: Upload!
2372
- refBy: String
2373
- refType: String
2374
- tags: Object
2375
- }
2376
-
2377
- input NewAttributeSet {
2378
- active: Boolean
2379
- description: String
2380
- entity: String!
2381
- items: [AttributeSetItemPatch!]
2382
- }
2383
-
2384
- input NewAuthProvider {
2385
- active: Boolean
2386
- clientId: String
2387
- clientSecret: String
2388
- params: Object
2389
- privateKey: String
2390
- tenantId: String
2391
- type: String!
2392
- }
2393
-
2394
- input NewBoard {
2395
- description: String
2396
- groupId: String
2397
- model: String!
2398
- name: String!
2399
- thumbnail: String
2400
- }
2401
-
2402
- input NewBoardTemplate {
2403
- description: String!
2404
- model: String!
2405
- name: String!
2406
- thumbnail: String
2407
- visibility: String!
2408
- }
2409
-
2410
- input NewCommonCode {
2411
- description: String
2412
- details: [String!]
2413
- name: String!
2414
- }
2415
-
2416
- input NewCommonCodeDetail {
2417
- commonCode: ObjectRef!
2418
- description: String
2419
- labels: Object
2420
- name: String!
2421
- rank: Float!
2422
- }
2423
-
2424
- input NewConnection {
2425
- description: String
2426
- edge: ObjectRef
2427
- endpoint: String
2428
- name: String!
2429
- params: String
2430
- type: String
2431
- }
2432
-
2433
- input NewContact {
2434
- address: String
2435
- company: String
2436
- department: String
2437
- email: EmailAddress
2438
- items: [ContactItemPatch!]
2439
- name: String!
2440
- note: String
2441
- phone: String
2442
- profile: ProfileInput
2443
- }
2444
-
2445
- input NewDepartment {
2446
- active: Boolean
2447
- controlNo: String!
2448
- description: String
2449
- extension: String
2450
- manager: ObjectRefForEmployee
2451
- name: String!
2452
- parent: ObjectRef
2453
- picture: Upload
2454
- }
2455
-
2456
- input NewEmployee {
2457
- active: Boolean
2458
- alias: String
2459
- bankAccount: String
2460
- bankName: String
2461
- contact: ObjectRefForContact
2462
- controlNo: String!
2463
- department: ObjectRefForDepartment
2464
- emergencyContact: String
2465
- emergencyContactPhone: String
2466
- extension: String
2467
- hiredOn: DateTimeISO
2468
- jobPosition: String
2469
- jobResponsibility: String
2470
- name: String!
2471
- note: String
2472
- photo: Upload
2473
- retiredOn: DateTimeISO
2474
- supervisor: ObjectRefForEmployee
2475
- type: EmployeeType
2476
- user: ObjectRefForUser
2477
- }
2478
-
2479
- input NewEntity {
2480
- active: Boolean
2481
- association: String
2482
- bundle: String!
2483
- columns: [String!]
2484
- dataProp: String
2485
- delStrategy: String
2486
- description: String
2487
- extEntity: Boolean
2488
- fixedColumns: Int
2489
- idField: String
2490
- idType: String
2491
- master: String
2492
- multiSaveUrl: String
2493
- name: String!
2494
- refField: String
2495
- searchUrl: String
2496
- tableName: String!
2497
- titleField: String
2498
- }
2499
-
2500
- input NewEntityColumn {
2501
- colSize: Float
2502
- colType: String!
2503
- defVal: String
2504
- description: String
2505
- entity: ObjectRef!
2506
- formEditor: String
2507
- formFormat: String
2508
- formValidator: String
2509
- gridAlign: String
2510
- gridEditor: String
2511
- gridFormat: String
2512
- gridRank: Int
2513
- gridValidator: String
2514
- gridWidth: Int
2515
- ignoreOnSav: Boolean
2516
- name: String!
2517
- nullable: Boolean
2518
- rangeVal: String
2519
- rank: Float
2520
- refName: String
2521
- refParams: String
2522
- refRelated: String
2523
- refType: String
2524
- refUrl: String
2525
- reverseSort: Boolean
2526
- searchEditor: String
2527
- searchInitVal: String
2528
- searchName: String
2529
- searchOper: String
2530
- searchRank: Int
2531
- sortRank: Int
2532
- term: String
2533
- uniqRank: Int
2534
- virtualField: Boolean
2535
- }
2536
-
2537
- input NewFavorite {
2538
- routing: String!
2539
- }
2540
-
2541
- input NewFont {
2542
- active: Boolean
2543
- files: [Upload!]
2544
- name: String!
2545
- path: String
2546
- provider: String
2547
- uri: String
2548
- }
2549
-
2550
- input NewGroup {
2551
- description: String
2552
- name: String!
2553
- }
2554
-
2555
- input NewMenu {
2556
- buttons: [ObjectRef!]
2557
- category: String
2558
- children: [ObjectRef!]
2559
- columns: [ObjectRef!]
2560
- description: String
2561
- detailFormId: String
2562
- detailLayout: String
2563
- fixedColumns: Int
2564
- gridSaveUrl: String
2565
- hiddenFlag: Boolean
2566
- iconPath: String
2567
- idField: String
2568
- itemsProp: String
2569
- menuType: String!
2570
- name: String!
2571
- pagination: Boolean
2572
- parent: ObjectRef
2573
- rank: Int
2574
- resourceId: String
2575
- resourceName: String
2576
- resourceType: String
2577
- resourceUrl: String
2578
- role: ObjectRef
2579
- routing: String
2580
- routingType: String
2581
- template: String
2582
- titleField: String
2583
- totalProp: String
2584
- }
2585
-
2586
- input NewMenuButton {
2587
- auth: String
2588
- icon: String
2589
- logic: String
2590
- menu: String!
2591
- rank: Int
2592
- style: String
2593
- text: String!
2594
- }
2595
-
2596
- input NewMenuColumn {
2597
- colSize: Int
2598
- colType: String!
2599
- defVal: String
2600
- description: String
2601
- extField: Boolean
2602
- formEditor: String
2603
- formFormat: String
2604
- formValidator: String
2605
- gridAlign: String
2606
- gridEditor: String
2607
- gridFormat: String
2608
- gridRank: Int
2609
- gridValidator: String
2610
- gridWidth: Int
2611
- ignoreOnSave: Boolean
2612
- menu: String!
2613
- name: String!
2614
- nullable: Boolean
2615
- rangeVal: String
2616
- rank: Int
2617
- refName: String
2618
- refParams: String
2619
- refRelated: String
2620
- refType: String
2621
- refUrl: String
2622
- reverseSort: Boolean
2623
- searchEditor: String
2624
- searchInitVal: String
2625
- searchName: String
2626
- searchOper: String
2627
- searchRank: Int
2628
- sortRank: Int
2629
- term: String
2630
- uniqRank: Int
2631
- virtualField: Boolean
2632
- }
2633
-
2634
- input NewMenuDetail {
2635
- association: String
2636
- buttons: [String!]
2637
- columns: [String!]
2638
- customView: String
2639
- dataProp: String
2640
- entityId: String
2641
- masterField: String
2642
- menu: String!
2643
- name: String!
2644
- saveUrl: String
2645
- searchUrl: String
2646
- viewSection: String!
2647
- }
2648
-
2649
- input NewMenuDetailButton {
2650
- icon: String
2651
- logic: String
2652
- menuDetail: String!
2653
- rank: Int
2654
- style: String
2655
- text: String!
2656
- }
2657
-
2658
- input NewMenuDetailColumn {
2659
- colSize: Int
2660
- colType: String
2661
- defVal: String
2662
- description: String
2663
- extField: Boolean
2664
- formEditor: String
2665
- formFormat: String
2666
- formValidator: String
2667
- gridAlign: String
2668
- gridEditor: String
2669
- gridFormat: String
2670
- gridRank: Int
2671
- gridValidator: String
2672
- gridWidth: Int
2673
- ignoreOnSave: Boolean
2674
- menuDetail: String
2675
- name: String
2676
- nullable: Boolean
2677
- rangeVal: String
2678
- rank: Int
2679
- refName: String
2680
- refParams: String
2681
- refRelated: String
2682
- refType: String
2683
- refUrl: String
2684
- reverseSort: Boolean
2685
- searchEditor: String
2686
- searchInitVal: String
2687
- searchName: String
2688
- searchOper: String
2689
- searchRank: Int
2690
- sortRank: Int
2691
- term: String
2692
- uniqRank: Int
2693
- virtualField: Boolean
2694
- }
2695
-
2696
- input NewNotification {
2697
- body: String
2698
- image: String
2699
- ownerId: String
2700
- property: Object
2701
- subject: String
2702
- timestamp: DateTimeISO
2703
- title: String
2704
- type: String
2705
- url: String
2706
- }
2707
-
2708
- input NewNotificationRule {
2709
- active: Boolean
2710
- body: String
2711
- description: String
2712
- name: String!
2713
- state: NotificationRuleStatus
2714
- thumbnail: Upload
2715
- title: String
2716
- url: String
2717
- }
2718
-
2719
- input NewOauth2Client {
2720
- accessToken: String
2721
- accessTokenUrl: String
2722
- authUrl: String
2723
- callbackUrl: String
2724
- clientId: String
2725
- clientSecret: String
2726
- codeChallengeMethod: String
2727
- codeVerifier: String
2728
- description: String
2729
- grantType: String
2730
- icon: String
2731
- jwtToken: JWT
2732
- name: String!
2733
- password: String
2734
- refreshToken: String
2735
- scopes: String
2736
- username: String
2737
- webhook: String
2738
- }
2739
-
2740
- input NewPDFRelease {
2741
- active: Boolean
2742
- description: String
2743
- name: String!
2744
- params: String
2745
- state: PDFReleaseStatus
2746
- }
2747
-
2748
- input NewPDFTemplate {
2749
- active: Boolean
2750
- content_template: String
2751
- cover_template: String
2752
- description: String
2753
- footer_template: String
2754
- header_template: String
2755
- last_template: String
2756
- name: String!
2757
- page_size: String = "A4"
2758
- state: PDFTemplateStatus
2759
- watermark: String
2760
- }
2761
-
2762
- input NewPagePreference {
2763
- element: String
2764
- page: String
2765
- preference: Object!
2766
- user: ObjectRef!
2767
- }
2768
-
2769
- input NewPayloadLog {
2770
- description: String
2771
- name: String!
2772
- }
2773
-
2774
- input NewPlayGroup {
2775
- description: String
2776
- name: String!
2777
- }
2778
-
2779
- input NewPrinterDevice {
2780
- activeFlag: Boolean
2781
- defaultFlag: Boolean
2782
- description: String!
2783
- dpi: Int
2784
- jobCategory: String
2785
- jobClass: String
2786
- jobType: String
2787
- name: String!
2788
- note: String
2789
- printerDriver: String
2790
- printerIp: String
2791
- printerPort: Int
2792
- serviceUrl: String
2793
- status: String
2794
- type: String
2795
- }
2796
-
2797
- input NewPrivilege {
2798
- category: String!
2799
- description: String
2800
- name: String!
2801
- roles: [ObjectRef!]
2802
- }
2803
-
2804
- input NewRole {
2805
- description: String
2806
- name: String!
2807
- privileges: [ObjectRef!]
2808
- users: [ObjectRef!]
2809
- }
2810
-
2811
- input NewScenario {
2812
- active: Boolean
2813
- description: String
2814
- name: String!
2815
- role: ObjectRef
2816
- schedule: String
2817
- timezone: String
2818
- ttl: Float
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: DateTimeISO
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
- searchCustomers(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DomainList!
3871
-
3872
- """To fetch domain"""
3873
- secureIPList: Object
3874
-
3875
- """To fetch a Setting"""
3876
- setting(name: String!, partnerDomainId: String): Setting!
3877
-
3878
- """To fetch multiple Settings"""
3879
- settings(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): SettingList!
3880
-
3881
- """To fetch a StateRegister"""
3882
- stateRegister(id: String!): StateRegister
3883
-
3884
- """To fetch a StateRegister by name"""
3885
- stateRegisterByName(name: String!): StateRegister
3886
-
3887
- """To fetch multiple StateRegisters"""
3888
- stateRegisters(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): StateRegisterList!
3889
-
3890
- """To fetch a step"""
3891
- step(name: String!): Step!
3892
-
3893
- """To fetch multiple steps"""
3894
- steps(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): StepList!
3895
-
3896
- """To fetch a task-type"""
3897
- taskType(name: String!): TaskType!
3898
-
3899
- """To fetch multiple task-type"""
3900
- taskTypes: TaskTypeList!
3901
-
3902
- """To fetch the connector from a task-type"""
3903
- taskTypesByConnection(connectionName: String!): TaskTypeList!
3904
-
3905
- """To fetch multiple Terminologies"""
3906
- terminologies(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): TerminologyList!
3907
-
3908
- """To fetch a Terminology"""
3909
- terminology(id: String!): Terminology!
3910
-
3911
- """To fetch a Theme"""
3912
- theme(id: String!): Theme
3913
-
3914
- """To fetch multiple Themes"""
3915
- themes(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ThemeList!
3916
-
3917
- """Fetches a user by their email address within the current domain."""
3918
- user(email: EmailAddress!): User!
3919
-
3920
- """To fetch Menus by role"""
3921
- userMenus: [Menu!]!
3922
-
3923
- """To fetch roles of a user"""
3924
- userRoles(userId: String!): [UserRole!]!
3925
-
3926
- """
3927
- Fetches a list of users based on provided search parameters within the current domain.
3928
- """
3929
- users(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): UserList!
3930
- vendors: [Domain!]!
3931
- }
3932
-
3933
- type RecipientItem {
3934
- recipient: OrgMemberTarget
3935
- type: OrgMemberTargetType
3936
- value: String
3937
- }
3938
-
3939
- type Role {
3940
- createdAt: DateTimeISO
3941
- creator: User
3942
- description: String
3943
- domain: Domain!
3944
- id: ID!
3945
- name: String
3946
- privileges: [Privilege!]
3947
- updatedAt: DateTimeISO
3948
- updater: User
3949
- users: [User!]
3950
- }
3951
-
3952
- type RoleList {
3953
- items: [Role!]
3954
- total: Int
3955
- }
3956
-
3957
- input RolePatch {
3958
- cuFlag: String
3959
- description: String
3960
- id: String
3961
- name: String
3962
- privileges: [ObjectRef!]
3963
- users: [ObjectRef!]
3964
- }
3965
-
3966
- type RolePrivilege {
3967
- assigned: Boolean
3968
- category: String
3969
- description: String
3970
- id: String
3971
- name: String
3972
- }
3973
-
3974
- type Scenario {
3975
- """[will be deprecated] automatically be started when this server start"""
3976
- active: Boolean
3977
- connectionNames: [Connection!]!
3978
- createdAt: DateTimeISO
3979
- creator: User
3980
- description: String
3981
- domain: Domain!
3982
- id: ID!
3983
- instances: [ScenarioInstance!]
3984
- name: String!
3985
- privilege: PrivilegeObject
3986
-
3987
- """accessible and executable system-wide"""
3988
- public: Boolean
3989
- publishTags: [Connection!]!
3990
- role: Role
3991
- schedule: String
3992
- scheduleId: String
3993
- state: String
3994
- steps: [Step!]
3995
- timezone: String
3996
- ttl: Float
3997
- type: String
3998
- updatedAt: DateTimeISO
3999
- updater: User
4000
- }
4001
-
4002
- type ScenarioInstance {
4003
- data: Object
4004
- domain: Domain
4005
- instanceName: String
4006
- message: String
4007
- progress: ScenarioInstanceProgress
4008
- result: Object
4009
- root: ScenarioInstance
4010
- scenarioName: String
4011
- state: String
4012
- timestamp: DateTimeISO
4013
- user: User
4014
- variables: Object
4015
- }
4016
-
4017
- type ScenarioInstanceList {
4018
- items: [ScenarioInstance!]!
4019
- total: Int!
4020
- }
4021
-
4022
- type ScenarioInstanceProgress {
4023
- rate: Int!
4024
- rounds: Int!
4025
- step: Int!
4026
- steps: Int!
4027
- }
4028
-
4029
- type ScenarioInstanceRunResult {
4030
- data: Object
4031
- instanceName: String
4032
- message: String
4033
- result: Object
4034
- scenarioName: String
4035
- state: String
4036
- timestamp: DateTimeISO
4037
- variables: Object
4038
- }
4039
-
4040
- type ScenarioInstanceState {
4041
- data: Object
4042
- domain: Domain
4043
- instanceName: String
4044
- message: String
4045
- progress: ScenarioInstanceProgress
4046
- scenarioName: String
4047
- state: ScenarioInstanceStatus
4048
- timestamp: DateTimeISO
4049
- variables: Object
4050
- }
4051
-
4052
- """state enumeration of a scenario-instance"""
4053
- enum ScenarioInstanceStatus {
4054
- HALTED
4055
- READY
4056
- STARTED
4057
- STOPPED
4058
- UNLOADED
4059
- }
4060
-
4061
- type ScenarioList {
4062
- items: [Scenario!]!
4063
- total: Int!
4064
- }
4065
-
4066
- input ScenarioPatch {
4067
- active: Boolean
4068
- cuFlag: String
4069
- description: String
4070
- id: ID
4071
- name: String
4072
- role: ObjectRef
4073
- schedule: String
4074
- steps: [StepPatch!]
4075
- timezone: String
4076
- ttl: Float
4077
- type: String
4078
- }
4079
-
4080
- type ScenarioQueueState {
4081
- domain: Domain!
4082
- queue: [PendingObject!]!
4083
- }
4084
-
4085
- """Entity for Setting"""
4086
- type Setting {
4087
- category: String!
4088
- createdAt: DateTimeISO
4089
- creator: User
4090
- description: String
4091
- domain: Domain!
4092
- id: ID!
4093
- name: String!
4094
- updatedAt: DateTimeISO
4095
- updater: User
4096
- value: String
4097
- }
4098
-
4099
- type SettingList {
4100
- items: [Setting!]!
4101
- total: Int!
4102
- }
4103
-
4104
- input SettingPatch {
4105
- category: String
4106
- cuFlag: String
4107
- description: String
4108
- id: ID
4109
- name: String
4110
- value: String
4111
- }
4112
-
4113
- input Sorting {
4114
- """
4115
- Set to true if descending sort. Default is "false"
4116
- """
4117
- desc: Boolean
4118
-
4119
- """Field name to sort by"""
4120
- name: String!
4121
- }
4122
-
4123
- """Entity for StateRegister"""
4124
- type StateRegister {
4125
- """Creation time of the state register"""
4126
- createdAt: DateTimeISO
4127
-
4128
- """User who created the state register"""
4129
- creator: User
4130
-
4131
- """ID of the user who created the state register"""
4132
- creatorId: String
4133
-
4134
- """Description of the state register"""
4135
- description: String
4136
-
4137
- """Associated domain for the state register"""
4138
- domain: Domain!
4139
-
4140
- """ID of the associated domain"""
4141
- domainId: String!
4142
-
4143
- """Group name for the state register"""
4144
- group: String
4145
- id: ID!
4146
-
4147
- """Name of the state register"""
4148
- name: String
4149
-
4150
- """Number of decimal places if the state is a number type"""
4151
- place: String
4152
-
4153
- """
4154
- Reference to an external entity or data, used as a flexible foreign key
4155
- """
4156
- refBy: String
4157
-
4158
- """Current state value"""
4159
- state: Object
4160
-
4161
- """Time to live for the state value in seconds"""
4162
- ttl: Int
4163
-
4164
- """Type of the state"""
4165
- type: String
4166
-
4167
- """Unit of the state value"""
4168
- unit: String
4169
-
4170
- """Last update time of the state register"""
4171
- updatedAt: DateTimeISO
4172
-
4173
- """User who last updated the state register"""
4174
- updater: User
4175
-
4176
- """ID of the user who last updated the state register"""
4177
- updaterId: String
4178
-
4179
- """User who wrote the state"""
4180
- writer: User
4181
-
4182
- """ID of the user who wrote the state"""
4183
- writerId: String
4184
-
4185
- """Time when the state was recorded"""
4186
- wroteAt: DateTimeISO
4187
- }
4188
-
4189
- type StateRegisterList {
4190
- """List of state registers"""
4191
- items: [StateRegister!]!
4192
-
4193
- """Total number of state registers"""
4194
- total: Int!
4195
- }
4196
-
4197
- input StateRegisterPatch {
4198
- """Flag indicating create/update operations"""
4199
- cuFlag: String
4200
-
4201
- """Description of the state register"""
4202
- description: String
4203
-
4204
- """Group name for the state register"""
4205
- group: String
4206
-
4207
- """ID of the state register"""
4208
- id: ID
4209
-
4210
- """Name of the state register"""
4211
- name: String
4212
-
4213
- """Number of decimal places if the state is a number type"""
4214
- place: String
4215
-
4216
- """
4217
- Reference to an external entity or data, used as a flexible foreign key
4218
- """
4219
- refBy: String
4220
-
4221
- """Current state value"""
4222
- state: Object
4223
-
4224
- """Time to live for the state value in seconds"""
4225
- ttl: Int
4226
-
4227
- """Type of the state"""
4228
- type: String
4229
-
4230
- """Unit of the state value"""
4231
- unit: String
4232
- }
4233
-
4234
- type Step {
4235
- connection: String
4236
- createdAt: DateTimeISO
4237
- creator: User
4238
- description: String
4239
- domain: Domain
4240
- id: ID!
4241
- log: Boolean
4242
- name: String!
4243
- params: String
4244
-
4245
- """
4246
- A boolean attribute indicating the inclusion status of an element in the result
4247
- """
4248
- result: Boolean
4249
- scenario: Scenario
4250
- sequence: Float
4251
- skip: Boolean
4252
- task: String
4253
- updatedAt: DateTimeISO
4254
- updater: User
4255
- }
4256
-
4257
- type StepList {
4258
- items: [Step!]!
4259
- total: Int!
4260
- }
4261
-
4262
- input StepPatch {
4263
- connection: String
4264
- cuFlag: String
4265
- description: String
4266
- id: ID
4267
- log: Boolean
4268
- name: String
4269
- params: String
4270
- result: Boolean
4271
- sequence: Int
4272
- skip: Boolean
4273
- task: String
4274
- }
4275
-
4276
- type Subscription {
4277
- board(id: String!): Board!
4278
- connectionLog(level: String): Log!
4279
- connectionState(name: String): ConnectionState!
4280
- data(tag: String!): Data!
4281
- notification(subjects: [String!]): Notification!
4282
- playGroup(id: String!): PlayGroup!
4283
- scenarioInstanceLog(instanceName: String, level: String, scenarioName: String): Log!
4284
- scenarioInstanceState(instanceName: String, scenarioName: String): ScenarioInstanceState!
4285
- scenarioQueueState: ScenarioQueueState!
4286
- }
4287
-
4288
- type TaskType {
4289
- connectorFree: Boolean
4290
- description: String
4291
- help: String
4292
- name: String!
4293
- parameterSpec: [PropertySpec!]
4294
- }
4295
-
4296
- type TaskTypeList {
4297
- items: [TaskType!]!
4298
- total: Int!
4299
- }
4300
-
4301
- """Entity for Terminology"""
4302
- type Terminology {
4303
- category: String!
4304
- createdAt: DateTimeISO
4305
- creator: User
4306
- description: String
4307
- display: String!
4308
- domain: Domain!
4309
- id: ID!
4310
- locale: String!
4311
- name: String!
4312
- updatedAt: DateTimeISO
4313
- updater: User
4314
- }
4315
-
4316
- type TerminologyList {
4317
- items: [Terminology!]!
4318
- total: Int!
4319
- }
4320
-
4321
- input TerminologyPatch {
4322
- category: String
4323
- cuFlag: String
4324
- description: String
4325
- display: String
4326
- id: ID
4327
- locale: String
4328
- name: String
4329
- }
4330
-
4331
- """Entity for Theme"""
4332
- type Theme {
4333
- active: Boolean
4334
- createdAt: DateTimeISO
4335
- creator: User
4336
- deletedAt: DateTimeISO
4337
- description: String
4338
- domain: Domain!
4339
- id: ID!
4340
- name: String
4341
- type: String
4342
- updatedAt: DateTimeISO
4343
- updater: User
4344
- value: Object
4345
- }
4346
-
4347
- type ThemeList {
4348
- items: [Theme!]!
4349
- total: Int!
4350
- }
4351
-
4352
- input ThemePatch {
4353
- active: Boolean
4354
- cuFlag: String
4355
- description: String
4356
- id: ID
4357
- name: String
4358
- type: String
4359
- value: Object
4360
- }
4361
-
4362
- """The `Upload` scalar type represents a file upload."""
4363
- scalar Upload
4364
-
4365
- type UploadURL {
4366
- fields: Any!
4367
- url: String!
4368
- }
4369
-
4370
- type User {
4371
- createdAt: DateTimeISO
4372
- creator: User
4373
- description: String
4374
- domains: [Domain!]!
4375
- email: EmailAddress!
4376
- id: ID!
4377
- locale: String
4378
- name: String
4379
- owner: Boolean
4380
- reference: String
4381
- roles: [Role!]!
4382
- ssoId: String
4383
- status: String!
4384
- updatedAt: DateTimeISO
4385
- updater: User
4386
- userType: String
4387
- usersAuthProviders: [UsersAuthProviders!]
4388
- }
4389
-
4390
- type UserList {
4391
- items: [User!]
4392
- total: Int
4393
- }
4394
-
4395
- input UserPatch {
4396
- cuFlag: String
4397
- description: String
4398
- domains: [ObjectRef!]
4399
- email: EmailAddress
4400
- id: ID
4401
- name: String
4402
- password: String
4403
- roles: [ObjectRef!]
4404
- status: String
4405
- userType: String
4406
- }
4407
-
4408
- """Entity for UserPreference"""
4409
- type UserPreference {
4410
- createdAt: DateTimeISO
4411
- creator: User
4412
- domain: Domain
4413
- id: ID!
4414
- key: String
4415
- preference: Object
4416
- updatedAt: DateTimeISO
4417
- updater: User
4418
- user: User!
4419
- }
4420
-
4421
- type UserPreferenceList {
4422
- items: [UserPreference!]!
4423
- total: Int!
4424
- }
4425
-
4426
- input UserPreferencePatch {
4427
- cuFlag: String
4428
- id: ID
4429
- key: String!
4430
- preference: Object!
4431
- user: ObjectRef!
4432
- }
4433
-
4434
- type UserRole {
4435
- assigned: Boolean
4436
- description: String
4437
- id: String
4438
- name: String
4439
- }
4440
-
4441
- """Entity for UsersAuthProviders"""
4442
- type UsersAuthProviders {
4443
- authProvider: AuthProvider
4444
- createdAt: DateTimeISO
4445
- domain: Domain!
4446
- id: ID!
4447
- ssoId: String
4448
- updatedAt: DateTimeISO
4449
- user: User
4450
- }
4451
-
4452
- input i18nCompletionInput {
4453
- json: String!
4454
- }
4455
-
4456
- type i18nCompletionOutput {
4457
- message: String
4458
- }