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