@operato/scene-i18n 2.0.0-alpha.10 → 2.0.0-alpha.12

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