@operato/scene-grist 7.3.14 → 7.3.19

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