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