@things-factory/operato-dataset 7.0.0-alpha.2 → 7.0.0-alpha.20
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/dist-client/menu.js +4 -0
- package/dist-client/menu.js.map +1 -1
- package/dist-client/themes/grist-theme.css +1 -1
- package/dist-client/tsconfig.tsbuildinfo +1 -1
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +38 -34
- package/schema.graphql +120 -17
- package/schema.gql +0 -5076
package/schema.gql
DELETED
|
@@ -1,5076 +0,0 @@
|
|
|
1
|
-
# -----------------------------------------------
|
|
2
|
-
# !!! THIS FILE WAS GENERATED BY TYPE-GRAPHQL !!!
|
|
3
|
-
# !!! DO NOT MODIFY THIS FILE BY YOURSELF !!!
|
|
4
|
-
# -----------------------------------------------
|
|
5
|
-
|
|
6
|
-
input APIDocCompletionInput {
|
|
7
|
-
code: String!
|
|
8
|
-
language: String
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
type APIDocCompletionOutput {
|
|
12
|
-
message: String
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
type AccessToken {
|
|
16
|
-
accesToken: String!
|
|
17
|
-
refreshToken: String!
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
"""Entity for Activity"""
|
|
21
|
-
type Activity {
|
|
22
|
-
"""BPMN 2.0 task type"""
|
|
23
|
-
activityType: String
|
|
24
|
-
|
|
25
|
-
"""Approval line for handling the activity."""
|
|
26
|
-
approvalLine: [ApprovalLineItem!]
|
|
27
|
-
|
|
28
|
-
"""Roles eligible to pick up activity from the activity bank."""
|
|
29
|
-
assigneeRole: Role
|
|
30
|
-
|
|
31
|
-
"""Who to resolve for the activity."""
|
|
32
|
-
assignees: [AssigneeItem!]
|
|
33
|
-
|
|
34
|
-
"""User assigned to the client application"""
|
|
35
|
-
client: User
|
|
36
|
-
createdAt: Timestamp
|
|
37
|
-
creator: User
|
|
38
|
-
description: String
|
|
39
|
-
domain: Domain
|
|
40
|
-
id: ID!
|
|
41
|
-
issuerRole: Role
|
|
42
|
-
model: [ActivityModelItem!]
|
|
43
|
-
|
|
44
|
-
"""
|
|
45
|
-
Parallel or sequential are properties as a multi-instance activity, otherwise it means a single instance.
|
|
46
|
-
"""
|
|
47
|
-
multiple: String
|
|
48
|
-
name: String
|
|
49
|
-
priority: Float
|
|
50
|
-
reportSource: String
|
|
51
|
-
|
|
52
|
-
"""The type of report to be shown when a task is approved"""
|
|
53
|
-
reportType: String
|
|
54
|
-
|
|
55
|
-
"""Autostart schedule in crontab format"""
|
|
56
|
-
schedule: String
|
|
57
|
-
|
|
58
|
-
"""ID of the autostart schedule registered in the schedule service"""
|
|
59
|
-
scheduleId: String
|
|
60
|
-
searchKeys: [ActivitySearchKeyItem!]
|
|
61
|
-
|
|
62
|
-
"""Standard time for this activity to be performed"""
|
|
63
|
-
standardTime: Float
|
|
64
|
-
|
|
65
|
-
"""Whether the purpose of starting the activity is to issue or post"""
|
|
66
|
-
startingType: String
|
|
67
|
-
state: String
|
|
68
|
-
|
|
69
|
-
"""The final authority on a given activity."""
|
|
70
|
-
supervisoryRole: Role
|
|
71
|
-
thumbnail: String
|
|
72
|
-
|
|
73
|
-
"""Time zone to which automatic scheduling is applied"""
|
|
74
|
-
timezone: String
|
|
75
|
-
uiSource: String
|
|
76
|
-
|
|
77
|
-
"""The type of UI to be shown when a task is performed"""
|
|
78
|
-
uiType: String
|
|
79
|
-
updatedAt: Timestamp
|
|
80
|
-
updater: User
|
|
81
|
-
version: Float
|
|
82
|
-
viewSource: String
|
|
83
|
-
|
|
84
|
-
"""The type of view to be shown when a task is approved"""
|
|
85
|
-
viewType: String
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
"""Entity for ActivityApproval"""
|
|
89
|
-
type ActivityApproval {
|
|
90
|
-
activityThread: ActivityThread
|
|
91
|
-
approver: User
|
|
92
|
-
comment: String
|
|
93
|
-
createdAt: Timestamp
|
|
94
|
-
creator: User
|
|
95
|
-
derivedApprovals: [ActivityApproval!]!
|
|
96
|
-
domain: Domain
|
|
97
|
-
id: ID!
|
|
98
|
-
judgment: String
|
|
99
|
-
|
|
100
|
-
"""Nth order approval for the given activity thread"""
|
|
101
|
-
order: Float
|
|
102
|
-
|
|
103
|
-
"""delegator approval"""
|
|
104
|
-
originalApproval: ActivityApproval
|
|
105
|
-
round: Float
|
|
106
|
-
terminatedAt: Timestamp
|
|
107
|
-
terminator: User
|
|
108
|
-
transaction: String
|
|
109
|
-
updatedAt: Timestamp
|
|
110
|
-
updater: User
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
type ActivityApprovalList {
|
|
114
|
-
items: [ActivityApproval!]!
|
|
115
|
-
total: Int!
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
type ActivityEvent {
|
|
119
|
-
date: Timestamp
|
|
120
|
-
id: String
|
|
121
|
-
name: String
|
|
122
|
-
priority: Float
|
|
123
|
-
state: String
|
|
124
|
-
type: String
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
"""Entity for ActivityInstance"""
|
|
128
|
-
type ActivityInstance {
|
|
129
|
-
activity: Activity
|
|
130
|
-
activityThreads: [ActivityThread!]!
|
|
131
|
-
activityType: String
|
|
132
|
-
adhocType: String
|
|
133
|
-
approvalLine: [ApprovalLineItem!]
|
|
134
|
-
assignedAt: Timestamp
|
|
135
|
-
assigneeRole: Role
|
|
136
|
-
assignees: [AssigneeItem!]
|
|
137
|
-
bizKeys: Role!
|
|
138
|
-
createdAt: Timestamp
|
|
139
|
-
creator: User
|
|
140
|
-
description: String
|
|
141
|
-
domain: Domain
|
|
142
|
-
dueAt: Timestamp
|
|
143
|
-
id: ID!
|
|
144
|
-
input: Object
|
|
145
|
-
issuedAt: Timestamp
|
|
146
|
-
issuer: User
|
|
147
|
-
key01: String
|
|
148
|
-
key02: String
|
|
149
|
-
key03: String
|
|
150
|
-
key04: String
|
|
151
|
-
key05: String
|
|
152
|
-
name: String
|
|
153
|
-
output: Object
|
|
154
|
-
priority: Float
|
|
155
|
-
reason: String
|
|
156
|
-
refBy: String
|
|
157
|
-
startedAt: Timestamp
|
|
158
|
-
starter: User
|
|
159
|
-
state: String
|
|
160
|
-
supervisoryRole: Role
|
|
161
|
-
terminatedAt: Timestamp
|
|
162
|
-
terminator: User
|
|
163
|
-
threadsMax: Int
|
|
164
|
-
threadsMin: Int
|
|
165
|
-
thumbnail: String
|
|
166
|
-
transaction: String
|
|
167
|
-
uiSource: String
|
|
168
|
-
uiType: String
|
|
169
|
-
updatedAt: Timestamp
|
|
170
|
-
updater: User
|
|
171
|
-
version: Float
|
|
172
|
-
viewSource: String
|
|
173
|
-
viewType: String
|
|
174
|
-
}
|
|
175
|
-
|
|
176
|
-
input ActivityInstanceDraft {
|
|
177
|
-
activityId: String
|
|
178
|
-
activityType: String
|
|
179
|
-
adhocType: String
|
|
180
|
-
approvalLine: Object
|
|
181
|
-
assigneeRole: ObjectRef
|
|
182
|
-
assignees: Object
|
|
183
|
-
description: String
|
|
184
|
-
dueAt: Date
|
|
185
|
-
id: ID
|
|
186
|
-
input: Object
|
|
187
|
-
name: String!
|
|
188
|
-
output: Object
|
|
189
|
-
priority: Float
|
|
190
|
-
reason: String
|
|
191
|
-
refBy: String
|
|
192
|
-
supervisoryRole: ObjectRef
|
|
193
|
-
threadsMax: Int
|
|
194
|
-
threadsMin: Int
|
|
195
|
-
uiSource: String
|
|
196
|
-
uiType: String
|
|
197
|
-
viewSource: String
|
|
198
|
-
viewType: String
|
|
199
|
-
}
|
|
200
|
-
|
|
201
|
-
"""History Entity of ActivityInstance"""
|
|
202
|
-
type ActivityInstanceHistory {
|
|
203
|
-
activityType: String
|
|
204
|
-
adhocType: String
|
|
205
|
-
approvalLine: [ApprovalLineItem!]
|
|
206
|
-
assignedAt: Timestamp
|
|
207
|
-
assigneeRole: Role
|
|
208
|
-
createdAt: Timestamp
|
|
209
|
-
creator: User
|
|
210
|
-
description: String
|
|
211
|
-
domain: Domain
|
|
212
|
-
dueAt: Timestamp
|
|
213
|
-
id: ID!
|
|
214
|
-
input: Object
|
|
215
|
-
issuedAt: Timestamp
|
|
216
|
-
issuer: User
|
|
217
|
-
key01: String
|
|
218
|
-
key02: String
|
|
219
|
-
key03: String
|
|
220
|
-
key04: String
|
|
221
|
-
key05: String
|
|
222
|
-
name: String
|
|
223
|
-
output: Object
|
|
224
|
-
priority: Float
|
|
225
|
-
reason: String
|
|
226
|
-
refBy: String
|
|
227
|
-
startedAt: Timestamp
|
|
228
|
-
starter: User
|
|
229
|
-
state: String
|
|
230
|
-
supervisoryRole: Role
|
|
231
|
-
terminatedAt: Timestamp
|
|
232
|
-
terminator: User
|
|
233
|
-
threadsMax: Int
|
|
234
|
-
threadsMin: Int
|
|
235
|
-
transaction: String
|
|
236
|
-
uiSource: String
|
|
237
|
-
uiType: String
|
|
238
|
-
updatedAt: Timestamp
|
|
239
|
-
updater: User
|
|
240
|
-
version: Float
|
|
241
|
-
}
|
|
242
|
-
|
|
243
|
-
type ActivityInstanceHistoryList {
|
|
244
|
-
items: [ActivityInstanceHistory!]!
|
|
245
|
-
total: Int!
|
|
246
|
-
}
|
|
247
|
-
|
|
248
|
-
input ActivityInstanceIssue {
|
|
249
|
-
activityId: String
|
|
250
|
-
activityType: String
|
|
251
|
-
adhocType: String
|
|
252
|
-
approvalLine: Object
|
|
253
|
-
assigneeRole: ObjectRef
|
|
254
|
-
assignees: Object
|
|
255
|
-
description: String
|
|
256
|
-
dueAt: Date
|
|
257
|
-
id: ID
|
|
258
|
-
input: Object
|
|
259
|
-
name: String
|
|
260
|
-
output: Object
|
|
261
|
-
priority: Float
|
|
262
|
-
reason: String
|
|
263
|
-
refBy: String
|
|
264
|
-
supervisoryRole: ObjectRef
|
|
265
|
-
threadsMax: Int
|
|
266
|
-
threadsMin: Int
|
|
267
|
-
uiSource: String
|
|
268
|
-
uiType: String
|
|
269
|
-
viewSource: String
|
|
270
|
-
viewType: String
|
|
271
|
-
}
|
|
272
|
-
|
|
273
|
-
type ActivityInstanceList {
|
|
274
|
-
items: [ActivityInstance!]!
|
|
275
|
-
total: Int!
|
|
276
|
-
}
|
|
277
|
-
|
|
278
|
-
type ActivityList {
|
|
279
|
-
items: [Activity!]!
|
|
280
|
-
total: Int!
|
|
281
|
-
}
|
|
282
|
-
|
|
283
|
-
"""Entity for ActivityModelItem"""
|
|
284
|
-
type ActivityModelItem {
|
|
285
|
-
active: Boolean
|
|
286
|
-
description: String
|
|
287
|
-
hidden: Boolean
|
|
288
|
-
inout: ActivityModelItemInoutType
|
|
289
|
-
mandatory: Boolean
|
|
290
|
-
name: String
|
|
291
|
-
options: Object
|
|
292
|
-
quantifier: [Int!]
|
|
293
|
-
spec: Object
|
|
294
|
-
tag: String
|
|
295
|
-
type: String
|
|
296
|
-
unit: String
|
|
297
|
-
}
|
|
298
|
-
|
|
299
|
-
"""inout enumeration of a activity-model-item"""
|
|
300
|
-
enum ActivityModelItemInoutType {
|
|
301
|
-
in
|
|
302
|
-
inout
|
|
303
|
-
out
|
|
304
|
-
}
|
|
305
|
-
|
|
306
|
-
input ActivityPatch {
|
|
307
|
-
activityType: String
|
|
308
|
-
approvalLine: Object
|
|
309
|
-
assigneeRole: ObjectRef
|
|
310
|
-
assignees: Object
|
|
311
|
-
cuFlag: String
|
|
312
|
-
description: String
|
|
313
|
-
id: ID
|
|
314
|
-
issuerRole: ObjectRef
|
|
315
|
-
model: Object
|
|
316
|
-
multiple: String
|
|
317
|
-
name: String
|
|
318
|
-
priority: Float
|
|
319
|
-
reportSource: String
|
|
320
|
-
reportType: String
|
|
321
|
-
schedule: String
|
|
322
|
-
scheduleId: String
|
|
323
|
-
searchKeys: Object
|
|
324
|
-
standardTime: Float
|
|
325
|
-
startingType: String
|
|
326
|
-
state: String
|
|
327
|
-
supervisoryRole: ObjectRef
|
|
328
|
-
thumbnail: Upload
|
|
329
|
-
timezone: String
|
|
330
|
-
uiSource: String
|
|
331
|
-
uiType: String
|
|
332
|
-
viewSource: String
|
|
333
|
-
viewType: String
|
|
334
|
-
}
|
|
335
|
-
|
|
336
|
-
"""Entity for ActivitySearchKeyItem"""
|
|
337
|
-
type ActivitySearchKeyItem {
|
|
338
|
-
description: String
|
|
339
|
-
inputKey: String
|
|
340
|
-
name: String!
|
|
341
|
-
tKey: String
|
|
342
|
-
}
|
|
343
|
-
|
|
344
|
-
"""Object Type for My Activity Summary"""
|
|
345
|
-
type ActivitySummary {
|
|
346
|
-
numberOfApprovalPendings: Float
|
|
347
|
-
numberOfDrafts: Float
|
|
348
|
-
numberOfPicks: Float
|
|
349
|
-
numberOfToDos: Float
|
|
350
|
-
}
|
|
351
|
-
|
|
352
|
-
"""Entity for ActivityTemplate"""
|
|
353
|
-
type ActivityTemplate {
|
|
354
|
-
active: Boolean
|
|
355
|
-
activityType: String
|
|
356
|
-
category: String
|
|
357
|
-
createdAt: Timestamp
|
|
358
|
-
creator: User
|
|
359
|
-
description: String
|
|
360
|
-
domain: Domain
|
|
361
|
-
id: ID!
|
|
362
|
-
model: [ActivityModelItem!]
|
|
363
|
-
name: String
|
|
364
|
-
reportSource: String
|
|
365
|
-
reportType: String
|
|
366
|
-
state: String
|
|
367
|
-
thumbnail: String
|
|
368
|
-
uiSource: String
|
|
369
|
-
uiType: String
|
|
370
|
-
updatedAt: Timestamp
|
|
371
|
-
updater: User
|
|
372
|
-
version: Float
|
|
373
|
-
viewSource: String
|
|
374
|
-
viewType: String
|
|
375
|
-
visibility: String
|
|
376
|
-
}
|
|
377
|
-
|
|
378
|
-
type ActivityTemplateList {
|
|
379
|
-
items: [ActivityTemplate!]!
|
|
380
|
-
total: Int!
|
|
381
|
-
}
|
|
382
|
-
|
|
383
|
-
input ActivityTemplatePatch {
|
|
384
|
-
active: Boolean
|
|
385
|
-
activityType: String
|
|
386
|
-
category: String
|
|
387
|
-
cuFlag: String
|
|
388
|
-
description: String
|
|
389
|
-
id: ID
|
|
390
|
-
model: Object
|
|
391
|
-
name: String
|
|
392
|
-
reportSource: String
|
|
393
|
-
reportType: String
|
|
394
|
-
state: String
|
|
395
|
-
thumbnail: Upload
|
|
396
|
-
uiSource: String
|
|
397
|
-
uiType: String
|
|
398
|
-
viewSource: String
|
|
399
|
-
viewType: String
|
|
400
|
-
visibility: String
|
|
401
|
-
}
|
|
402
|
-
|
|
403
|
-
"""Entity for ActivityThread"""
|
|
404
|
-
type ActivityThread {
|
|
405
|
-
activityApprovals: [ActivityApproval!]!
|
|
406
|
-
activityInstance: ActivityInstance
|
|
407
|
-
assignedAt: Timestamp
|
|
408
|
-
assignee: User
|
|
409
|
-
createdAt: Timestamp
|
|
410
|
-
creator: User
|
|
411
|
-
domain: Domain
|
|
412
|
-
dueAt: Timestamp
|
|
413
|
-
id: ID!
|
|
414
|
-
output: Object
|
|
415
|
-
round: Float
|
|
416
|
-
startedAt: Timestamp
|
|
417
|
-
state: String
|
|
418
|
-
terminatedAt: Timestamp
|
|
419
|
-
terminator: User
|
|
420
|
-
transaction: String
|
|
421
|
-
updatedAt: Timestamp
|
|
422
|
-
updater: User
|
|
423
|
-
version: Float
|
|
424
|
-
}
|
|
425
|
-
|
|
426
|
-
type ActivityThreadList {
|
|
427
|
-
items: [ActivityThread!]!
|
|
428
|
-
total: Int!
|
|
429
|
-
}
|
|
430
|
-
|
|
431
|
-
input ActivityThreadSave {
|
|
432
|
-
output: Object
|
|
433
|
-
}
|
|
434
|
-
|
|
435
|
-
"""Any Scalar type (String, Boolean, Int, Float, Object, List)"""
|
|
436
|
-
scalar Any
|
|
437
|
-
|
|
438
|
-
type AppBinding {
|
|
439
|
-
application: Application
|
|
440
|
-
createdAt: Timestamp
|
|
441
|
-
creator: User!
|
|
442
|
-
description: String
|
|
443
|
-
domains: [Domain!]!
|
|
444
|
-
email: String!
|
|
445
|
-
id: ID!
|
|
446
|
-
locale: String
|
|
447
|
-
name: String!
|
|
448
|
-
owner: Boolean
|
|
449
|
-
reference: String
|
|
450
|
-
refreshToken: String
|
|
451
|
-
roles: [Role!]!
|
|
452
|
-
scope: String
|
|
453
|
-
status: String!
|
|
454
|
-
updatedAt: Timestamp
|
|
455
|
-
updater: User!
|
|
456
|
-
userType: String
|
|
457
|
-
}
|
|
458
|
-
|
|
459
|
-
type AppBindingList {
|
|
460
|
-
items: [AppBinding!]
|
|
461
|
-
total: Int
|
|
462
|
-
}
|
|
463
|
-
|
|
464
|
-
type Appliance {
|
|
465
|
-
accessToken: String
|
|
466
|
-
brand: String
|
|
467
|
-
createdAt: Timestamp
|
|
468
|
-
creator: User
|
|
469
|
-
description: String
|
|
470
|
-
domain: Domain!
|
|
471
|
-
id: ID!
|
|
472
|
-
model: String
|
|
473
|
-
name: String!
|
|
474
|
-
netmask: String
|
|
475
|
-
serialNo: String
|
|
476
|
-
updatedAt: Timestamp
|
|
477
|
-
updater: User
|
|
478
|
-
}
|
|
479
|
-
|
|
480
|
-
type ApplianceList {
|
|
481
|
-
items: [Appliance!]
|
|
482
|
-
total: Int
|
|
483
|
-
}
|
|
484
|
-
|
|
485
|
-
input AppliancePatch {
|
|
486
|
-
brand: String
|
|
487
|
-
description: String
|
|
488
|
-
id: ID
|
|
489
|
-
model: String
|
|
490
|
-
name: String
|
|
491
|
-
netmask: String
|
|
492
|
-
serialNo: String
|
|
493
|
-
}
|
|
494
|
-
|
|
495
|
-
type Application {
|
|
496
|
-
accessTokenUrl: String!
|
|
497
|
-
appKey: String
|
|
498
|
-
appSecret: String
|
|
499
|
-
authUrl: String!
|
|
500
|
-
availableScopes: String!
|
|
501
|
-
createdAt: Timestamp
|
|
502
|
-
creator: User
|
|
503
|
-
description: String
|
|
504
|
-
domain: Domain!
|
|
505
|
-
email: String!
|
|
506
|
-
icon: String
|
|
507
|
-
id: ID!
|
|
508
|
-
name: String!
|
|
509
|
-
redirectUrl: String!
|
|
510
|
-
status: String!
|
|
511
|
-
type: String!
|
|
512
|
-
updatedAt: Timestamp
|
|
513
|
-
updater: User
|
|
514
|
-
url: String!
|
|
515
|
-
webhook: String
|
|
516
|
-
}
|
|
517
|
-
|
|
518
|
-
type ApplicationList {
|
|
519
|
-
items: [Application!]
|
|
520
|
-
total: Int
|
|
521
|
-
}
|
|
522
|
-
|
|
523
|
-
input ApplicationPatch {
|
|
524
|
-
description: String
|
|
525
|
-
email: String
|
|
526
|
-
icon: String
|
|
527
|
-
name: String
|
|
528
|
-
redirectUrl: String
|
|
529
|
-
type: ApplicationType
|
|
530
|
-
url: String
|
|
531
|
-
webhook: String
|
|
532
|
-
}
|
|
533
|
-
|
|
534
|
-
"""state enumeration of a application"""
|
|
535
|
-
enum ApplicationType {
|
|
536
|
-
MMS
|
|
537
|
-
OTHERS
|
|
538
|
-
SELLERCRAFT
|
|
539
|
-
SFTP
|
|
540
|
-
XERO
|
|
541
|
-
XILNEX
|
|
542
|
-
}
|
|
543
|
-
|
|
544
|
-
"""Entity for ApprovalLine"""
|
|
545
|
-
type ApprovalLine {
|
|
546
|
-
createdAt: Timestamp
|
|
547
|
-
creator: User
|
|
548
|
-
description: String
|
|
549
|
-
domain: Domain
|
|
550
|
-
id: ID!
|
|
551
|
-
model: [ApprovalLineItem!]
|
|
552
|
-
name: String
|
|
553
|
-
owner: ApprovalLineOwner
|
|
554
|
-
ownerEmployee: Employee
|
|
555
|
-
ownerType: String
|
|
556
|
-
ownerValue: String
|
|
557
|
-
updatedAt: Timestamp
|
|
558
|
-
updater: User
|
|
559
|
-
}
|
|
560
|
-
|
|
561
|
-
"""Entity for approval line item"""
|
|
562
|
-
type ApprovalLineItem {
|
|
563
|
-
approver: OrgMemberTarget
|
|
564
|
-
type: String
|
|
565
|
-
value: String
|
|
566
|
-
}
|
|
567
|
-
|
|
568
|
-
type ApprovalLineList {
|
|
569
|
-
items: [ApprovalLine!]!
|
|
570
|
-
total: Int!
|
|
571
|
-
}
|
|
572
|
-
|
|
573
|
-
type ApprovalLineOwner {
|
|
574
|
-
controlNo: String
|
|
575
|
-
|
|
576
|
-
"""Field description"""
|
|
577
|
-
description: String
|
|
578
|
-
|
|
579
|
-
"""Field id"""
|
|
580
|
-
id: ID!
|
|
581
|
-
|
|
582
|
-
"""Field name"""
|
|
583
|
-
name: String
|
|
584
|
-
}
|
|
585
|
-
|
|
586
|
-
"""type enumeration of a approvalLineOwner"""
|
|
587
|
-
enum ApprovalLineOwnerType {
|
|
588
|
-
Common
|
|
589
|
-
Employee
|
|
590
|
-
}
|
|
591
|
-
|
|
592
|
-
input ApprovalLinePatch {
|
|
593
|
-
cuFlag: String
|
|
594
|
-
description: String
|
|
595
|
-
id: ID
|
|
596
|
-
model: Object
|
|
597
|
-
name: String
|
|
598
|
-
owner: ObjectRefApprovalLineOwnerType
|
|
599
|
-
ownerType: ApprovalLineOwnerType
|
|
600
|
-
}
|
|
601
|
-
|
|
602
|
-
type AssigneeItem {
|
|
603
|
-
assignee: OrgMemberTarget
|
|
604
|
-
type: OrgMemberTargetType
|
|
605
|
-
value: String
|
|
606
|
-
}
|
|
607
|
-
|
|
608
|
-
type Attachment {
|
|
609
|
-
category: String
|
|
610
|
-
createdAt: Timestamp!
|
|
611
|
-
creator: User
|
|
612
|
-
description: String
|
|
613
|
-
domain: Domain!
|
|
614
|
-
encoding: String!
|
|
615
|
-
fullpath: String!
|
|
616
|
-
id: ID!
|
|
617
|
-
mimetype: String!
|
|
618
|
-
name: String!
|
|
619
|
-
path: String!
|
|
620
|
-
refBy: String
|
|
621
|
-
refType: String
|
|
622
|
-
size: String!
|
|
623
|
-
updatedAt: Timestamp!
|
|
624
|
-
updater: User
|
|
625
|
-
}
|
|
626
|
-
|
|
627
|
-
type AttachmentList {
|
|
628
|
-
items: [Attachment!]!
|
|
629
|
-
total: Int!
|
|
630
|
-
}
|
|
631
|
-
|
|
632
|
-
input AttachmentPatch {
|
|
633
|
-
category: String
|
|
634
|
-
description: String
|
|
635
|
-
encoding: String
|
|
636
|
-
file: Upload
|
|
637
|
-
mimetype: String
|
|
638
|
-
name: String
|
|
639
|
-
refBy: String
|
|
640
|
-
refType: String
|
|
641
|
-
}
|
|
642
|
-
|
|
643
|
-
"""Entity for AttributeSet"""
|
|
644
|
-
type AttributeSet {
|
|
645
|
-
createdAt: Timestamp
|
|
646
|
-
description: String
|
|
647
|
-
entity: String
|
|
648
|
-
id: ID!
|
|
649
|
-
items: [AttributeSetItem!]
|
|
650
|
-
updatedAt: Timestamp
|
|
651
|
-
}
|
|
652
|
-
|
|
653
|
-
"""Entity for AttributeSetItem"""
|
|
654
|
-
type AttributeSetItem {
|
|
655
|
-
active: Boolean
|
|
656
|
-
description: String
|
|
657
|
-
hidden: Boolean
|
|
658
|
-
name: String!
|
|
659
|
-
options: Object
|
|
660
|
-
tag: String
|
|
661
|
-
type: String
|
|
662
|
-
}
|
|
663
|
-
|
|
664
|
-
input AttributeSetItemPatch {
|
|
665
|
-
active: Boolean
|
|
666
|
-
description: String
|
|
667
|
-
hidden: Boolean
|
|
668
|
-
name: String
|
|
669
|
-
options: Object
|
|
670
|
-
tag: String
|
|
671
|
-
type: AttributeSetItemType
|
|
672
|
-
}
|
|
673
|
-
|
|
674
|
-
"""type enumeration of a attribute-set-item"""
|
|
675
|
-
enum AttributeSetItemType {
|
|
676
|
-
boolean
|
|
677
|
-
date
|
|
678
|
-
datetime
|
|
679
|
-
file
|
|
680
|
-
number
|
|
681
|
-
select
|
|
682
|
-
text
|
|
683
|
-
}
|
|
684
|
-
|
|
685
|
-
type AttributeSetList {
|
|
686
|
-
items: [AttributeSet!]!
|
|
687
|
-
total: Int!
|
|
688
|
-
}
|
|
689
|
-
|
|
690
|
-
input AttributeSetPatch {
|
|
691
|
-
cuFlag: String
|
|
692
|
-
description: String
|
|
693
|
-
entity: String
|
|
694
|
-
id: ID
|
|
695
|
-
items: [AttributeSetItemPatch!]
|
|
696
|
-
}
|
|
697
|
-
|
|
698
|
-
"""Entity for Visualization Board"""
|
|
699
|
-
type Board {
|
|
700
|
-
createdAt: Timestamp
|
|
701
|
-
creator: User
|
|
702
|
-
description: String
|
|
703
|
-
domain: Domain
|
|
704
|
-
group: Group
|
|
705
|
-
id: ID
|
|
706
|
-
model: String
|
|
707
|
-
name: String!
|
|
708
|
-
playGroups: [PlayGroup!]
|
|
709
|
-
thumbnail: String
|
|
710
|
-
updatedAt: Timestamp
|
|
711
|
-
updater: User
|
|
712
|
-
}
|
|
713
|
-
|
|
714
|
-
type BoardList {
|
|
715
|
-
items: [Board!]!
|
|
716
|
-
total: Int!
|
|
717
|
-
}
|
|
718
|
-
|
|
719
|
-
input BoardPatch {
|
|
720
|
-
description: String
|
|
721
|
-
groupId: String
|
|
722
|
-
model: String
|
|
723
|
-
name: String
|
|
724
|
-
thumbnail: String
|
|
725
|
-
}
|
|
726
|
-
|
|
727
|
-
type BoardSetting {
|
|
728
|
-
board: Board!
|
|
729
|
-
id: ID!
|
|
730
|
-
name: String!
|
|
731
|
-
value: String!
|
|
732
|
-
}
|
|
733
|
-
|
|
734
|
-
"""Entity for BoardTemplate"""
|
|
735
|
-
type BoardTemplate {
|
|
736
|
-
createdAt: Timestamp
|
|
737
|
-
creator: User
|
|
738
|
-
description: String
|
|
739
|
-
domain: Domain
|
|
740
|
-
id: ID!
|
|
741
|
-
model: String
|
|
742
|
-
name: String
|
|
743
|
-
state: String
|
|
744
|
-
thumbnail: String
|
|
745
|
-
updatedAt: Timestamp
|
|
746
|
-
updater: User
|
|
747
|
-
version: Float
|
|
748
|
-
}
|
|
749
|
-
|
|
750
|
-
type BoardTemplateList {
|
|
751
|
-
items: [BoardTemplate!]!
|
|
752
|
-
total: Int!
|
|
753
|
-
}
|
|
754
|
-
|
|
755
|
-
input BoardTemplatePatch {
|
|
756
|
-
cuFlag: String
|
|
757
|
-
description: String
|
|
758
|
-
id: ID
|
|
759
|
-
model: String!
|
|
760
|
-
name: String
|
|
761
|
-
state: BoardTemplateStatus
|
|
762
|
-
thumbnail: String
|
|
763
|
-
}
|
|
764
|
-
|
|
765
|
-
"""state enumeration of a boardTemplate"""
|
|
766
|
-
enum BoardTemplateStatus {
|
|
767
|
-
DRAFT
|
|
768
|
-
RELEASED
|
|
769
|
-
}
|
|
770
|
-
|
|
771
|
-
input ChatCompletionInput {
|
|
772
|
-
content: String!
|
|
773
|
-
}
|
|
774
|
-
|
|
775
|
-
type ChatCompletionOutput {
|
|
776
|
-
message: String
|
|
777
|
-
}
|
|
778
|
-
|
|
779
|
-
input CodeDecipherInput {
|
|
780
|
-
code: String!
|
|
781
|
-
language: String
|
|
782
|
-
system: String
|
|
783
|
-
}
|
|
784
|
-
|
|
785
|
-
type CodeDecipherOutput {
|
|
786
|
-
message: String
|
|
787
|
-
}
|
|
788
|
-
|
|
789
|
-
"""Entity for CommonCode"""
|
|
790
|
-
type CommonCode {
|
|
791
|
-
createdAt: Timestamp
|
|
792
|
-
creator: User
|
|
793
|
-
description: String
|
|
794
|
-
details: [CommonCodeDetail!]!
|
|
795
|
-
domain: Domain
|
|
796
|
-
id: ID!
|
|
797
|
-
name: String!
|
|
798
|
-
updatedAt: Timestamp
|
|
799
|
-
updater: User
|
|
800
|
-
}
|
|
801
|
-
|
|
802
|
-
"""Entity for CommonCodeDetail"""
|
|
803
|
-
type CommonCodeDetail {
|
|
804
|
-
commonCode: CommonCode
|
|
805
|
-
createdAt: Timestamp
|
|
806
|
-
creator: User
|
|
807
|
-
description: String
|
|
808
|
-
domain: Domain
|
|
809
|
-
id: ID!
|
|
810
|
-
name: String!
|
|
811
|
-
rank: Float
|
|
812
|
-
updatedAt: Timestamp
|
|
813
|
-
updater: User
|
|
814
|
-
}
|
|
815
|
-
|
|
816
|
-
type CommonCodeDetailList {
|
|
817
|
-
items: [CommonCodeDetail!]!
|
|
818
|
-
total: Int!
|
|
819
|
-
}
|
|
820
|
-
|
|
821
|
-
input CommonCodeDetailPatch {
|
|
822
|
-
commonCode: ObjectRef!
|
|
823
|
-
cuFlag: String
|
|
824
|
-
description: String
|
|
825
|
-
id: ID
|
|
826
|
-
name: String
|
|
827
|
-
rank: Float
|
|
828
|
-
}
|
|
829
|
-
|
|
830
|
-
type CommonCodeList {
|
|
831
|
-
items: [CommonCode!]!
|
|
832
|
-
total: Int!
|
|
833
|
-
}
|
|
834
|
-
|
|
835
|
-
input CommonCodePatch {
|
|
836
|
-
cuFlag: String
|
|
837
|
-
description: String
|
|
838
|
-
details: [String!]
|
|
839
|
-
id: ID
|
|
840
|
-
name: String
|
|
841
|
-
}
|
|
842
|
-
|
|
843
|
-
type Connection {
|
|
844
|
-
active: Boolean
|
|
845
|
-
createdAt: Timestamp
|
|
846
|
-
creator: User
|
|
847
|
-
description: String
|
|
848
|
-
domain: Domain
|
|
849
|
-
endpoint: String
|
|
850
|
-
id: ID!
|
|
851
|
-
name: String!
|
|
852
|
-
params: String
|
|
853
|
-
state: String
|
|
854
|
-
type: String
|
|
855
|
-
updatedAt: Timestamp
|
|
856
|
-
updater: User
|
|
857
|
-
}
|
|
858
|
-
|
|
859
|
-
type ConnectionList {
|
|
860
|
-
items: [Connection!]!
|
|
861
|
-
total: Int!
|
|
862
|
-
}
|
|
863
|
-
|
|
864
|
-
input ConnectionPatch {
|
|
865
|
-
active: Boolean
|
|
866
|
-
cuFlag: String!
|
|
867
|
-
description: String
|
|
868
|
-
endpoint: String
|
|
869
|
-
id: ID
|
|
870
|
-
name: String
|
|
871
|
-
params: String
|
|
872
|
-
type: String
|
|
873
|
-
}
|
|
874
|
-
|
|
875
|
-
type ConnectionState {
|
|
876
|
-
description: String
|
|
877
|
-
domain: Domain
|
|
878
|
-
id: String
|
|
879
|
-
name: String
|
|
880
|
-
state: String
|
|
881
|
-
timestamp: Timestamp
|
|
882
|
-
type: String
|
|
883
|
-
}
|
|
884
|
-
|
|
885
|
-
type ConnectorList {
|
|
886
|
-
items: [ConnectorType!]!
|
|
887
|
-
total: Int!
|
|
888
|
-
}
|
|
889
|
-
|
|
890
|
-
type ConnectorType {
|
|
891
|
-
description: String
|
|
892
|
-
help: String
|
|
893
|
-
name: String!
|
|
894
|
-
parameterSpec: [PropertySpec!]
|
|
895
|
-
taskPrefixes: [String!]
|
|
896
|
-
}
|
|
897
|
-
|
|
898
|
-
"""Entity for Contact"""
|
|
899
|
-
type Contact {
|
|
900
|
-
address: String
|
|
901
|
-
company: String
|
|
902
|
-
createdAt: Timestamp
|
|
903
|
-
creator: User
|
|
904
|
-
deletedAt: Timestamp
|
|
905
|
-
department: String
|
|
906
|
-
domain: Domain
|
|
907
|
-
email: String
|
|
908
|
-
id: ID!
|
|
909
|
-
items: [ContactItem!]
|
|
910
|
-
name: String
|
|
911
|
-
note: String
|
|
912
|
-
phone: String
|
|
913
|
-
profile: Profile
|
|
914
|
-
updatedAt: Timestamp
|
|
915
|
-
updater: User
|
|
916
|
-
}
|
|
917
|
-
|
|
918
|
-
type ContactItem {
|
|
919
|
-
label: String!
|
|
920
|
-
type: String!
|
|
921
|
-
value: String!
|
|
922
|
-
}
|
|
923
|
-
|
|
924
|
-
input ContactItemPatch {
|
|
925
|
-
label: String!
|
|
926
|
-
type: String!
|
|
927
|
-
value: String!
|
|
928
|
-
}
|
|
929
|
-
|
|
930
|
-
type ContactList {
|
|
931
|
-
items: [Contact!]!
|
|
932
|
-
total: Int!
|
|
933
|
-
}
|
|
934
|
-
|
|
935
|
-
input ContactPatch {
|
|
936
|
-
address: String
|
|
937
|
-
company: String
|
|
938
|
-
cuFlag: String
|
|
939
|
-
department: String
|
|
940
|
-
email: String
|
|
941
|
-
id: ID
|
|
942
|
-
items: [ContactItemPatch!]
|
|
943
|
-
name: String
|
|
944
|
-
note: String
|
|
945
|
-
phone: String
|
|
946
|
-
profile: ProfileInput
|
|
947
|
-
}
|
|
948
|
-
|
|
949
|
-
type Data {
|
|
950
|
-
"""Data delivered by subscription"""
|
|
951
|
-
data: Object
|
|
952
|
-
|
|
953
|
-
"""The domain where the data originated"""
|
|
954
|
-
domain: Domain
|
|
955
|
-
|
|
956
|
-
"""Tag name attached to data"""
|
|
957
|
-
tag: String!
|
|
958
|
-
}
|
|
959
|
-
|
|
960
|
-
"""Entity for DataArchive"""
|
|
961
|
-
type DataArchive {
|
|
962
|
-
createdAt: Timestamp
|
|
963
|
-
creator: User
|
|
964
|
-
domain: Domain
|
|
965
|
-
downloadUrl: String
|
|
966
|
-
id: ID!
|
|
967
|
-
requestParams: Object
|
|
968
|
-
status: String
|
|
969
|
-
type: String
|
|
970
|
-
updatedAt: Timestamp
|
|
971
|
-
updater: User
|
|
972
|
-
}
|
|
973
|
-
|
|
974
|
-
type DataArchiveList {
|
|
975
|
-
items: [DataArchive!]!
|
|
976
|
-
total: Int!
|
|
977
|
-
}
|
|
978
|
-
|
|
979
|
-
input DataArchivePatch {
|
|
980
|
-
cuFlag: String
|
|
981
|
-
downloadUrl: String
|
|
982
|
-
id: ID
|
|
983
|
-
requestParams: Object
|
|
984
|
-
status: String
|
|
985
|
-
type: String
|
|
986
|
-
}
|
|
987
|
-
|
|
988
|
-
"""Entity for DataItem"""
|
|
989
|
-
type DataItem {
|
|
990
|
-
active: Boolean
|
|
991
|
-
description: String
|
|
992
|
-
hidden: Boolean
|
|
993
|
-
name: String!
|
|
994
|
-
options: Object
|
|
995
|
-
quota: Int
|
|
996
|
-
spec: Object
|
|
997
|
-
|
|
998
|
-
"""
|
|
999
|
-
The grouping logic for data summarization in the given field during periodic task deadlines.
|
|
1000
|
-
"""
|
|
1001
|
-
stat: String
|
|
1002
|
-
tag: String
|
|
1003
|
-
type: String
|
|
1004
|
-
unit: String
|
|
1005
|
-
}
|
|
1006
|
-
|
|
1007
|
-
input DataItemPatch {
|
|
1008
|
-
active: Boolean
|
|
1009
|
-
description: String
|
|
1010
|
-
hidden: Boolean
|
|
1011
|
-
name: String
|
|
1012
|
-
options: Object
|
|
1013
|
-
quota: Int
|
|
1014
|
-
spec: Object
|
|
1015
|
-
|
|
1016
|
-
"""
|
|
1017
|
-
The grouping logic for data summarization in the given field during periodic task deadlines.
|
|
1018
|
-
"""
|
|
1019
|
-
stat: String
|
|
1020
|
-
tag: String
|
|
1021
|
-
type: DataItemType
|
|
1022
|
-
unit: String
|
|
1023
|
-
}
|
|
1024
|
-
|
|
1025
|
-
"""type enumeration of a data-item"""
|
|
1026
|
-
enum DataItemType {
|
|
1027
|
-
boolean
|
|
1028
|
-
date
|
|
1029
|
-
datetime
|
|
1030
|
-
file
|
|
1031
|
-
number
|
|
1032
|
-
select
|
|
1033
|
-
text
|
|
1034
|
-
}
|
|
1035
|
-
|
|
1036
|
-
"""Entity for DataKeyItem"""
|
|
1037
|
-
type DataKeyItem {
|
|
1038
|
-
dataKey: String
|
|
1039
|
-
description: String
|
|
1040
|
-
name: String!
|
|
1041
|
-
tKey: String
|
|
1042
|
-
}
|
|
1043
|
-
|
|
1044
|
-
input DataKeyItemPatch {
|
|
1045
|
-
dataKey: String
|
|
1046
|
-
description: String
|
|
1047
|
-
name: String
|
|
1048
|
-
tKey: String
|
|
1049
|
-
}
|
|
1050
|
-
|
|
1051
|
-
"""Entity for DataKeySet"""
|
|
1052
|
-
type DataKeySet {
|
|
1053
|
-
active: Boolean
|
|
1054
|
-
createdAt: Timestamp
|
|
1055
|
-
creator: User
|
|
1056
|
-
dataKeyItems: [DataKeyItem!]
|
|
1057
|
-
description: String
|
|
1058
|
-
domain: Domain
|
|
1059
|
-
id: ID!
|
|
1060
|
-
name: String!
|
|
1061
|
-
reportType: String
|
|
1062
|
-
reportView: String
|
|
1063
|
-
thumbnail: String
|
|
1064
|
-
updatedAt: Timestamp
|
|
1065
|
-
updater: User
|
|
1066
|
-
}
|
|
1067
|
-
|
|
1068
|
-
type DataKeySetList {
|
|
1069
|
-
items: [DataKeySet!]!
|
|
1070
|
-
total: Int!
|
|
1071
|
-
}
|
|
1072
|
-
|
|
1073
|
-
input DataKeySetPatch {
|
|
1074
|
-
active: Boolean
|
|
1075
|
-
cuFlag: String
|
|
1076
|
-
dataKeyItems: [DataKeyItemPatch!]
|
|
1077
|
-
description: String
|
|
1078
|
-
id: ID
|
|
1079
|
-
name: String
|
|
1080
|
-
reportType: String
|
|
1081
|
-
reportView: String
|
|
1082
|
-
thumbnail: Upload
|
|
1083
|
-
}
|
|
1084
|
-
|
|
1085
|
-
"""Entity for Out of control data"""
|
|
1086
|
-
type DataOoc {
|
|
1087
|
-
collectedAt: Timestamp
|
|
1088
|
-
correctedAt: Timestamp
|
|
1089
|
-
correctiveAction: String
|
|
1090
|
-
correctiveInstruction: String
|
|
1091
|
-
corrector: User
|
|
1092
|
-
createdAt: Timestamp
|
|
1093
|
-
creator: User
|
|
1094
|
-
data: Object
|
|
1095
|
-
dataItems: [DataItem!]
|
|
1096
|
-
dataSet: DataSet
|
|
1097
|
-
dataSetVersion: Float
|
|
1098
|
-
description: String
|
|
1099
|
-
domain: Domain
|
|
1100
|
-
history: Object
|
|
1101
|
-
id: ID!
|
|
1102
|
-
judgment: Object
|
|
1103
|
-
key01: String
|
|
1104
|
-
key02: String
|
|
1105
|
-
key03: String
|
|
1106
|
-
key04: String
|
|
1107
|
-
key05: String
|
|
1108
|
-
name: String!
|
|
1109
|
-
ooc: Boolean
|
|
1110
|
-
oos: Boolean
|
|
1111
|
-
partitionKeys: Object
|
|
1112
|
-
rawData: String
|
|
1113
|
-
reviewedAt: Timestamp
|
|
1114
|
-
reviewer: User
|
|
1115
|
-
source: String
|
|
1116
|
-
state: String
|
|
1117
|
-
type: String
|
|
1118
|
-
updatedAt: Timestamp
|
|
1119
|
-
updater: User
|
|
1120
|
-
useCase: String
|
|
1121
|
-
workDate: String
|
|
1122
|
-
workShift: String
|
|
1123
|
-
}
|
|
1124
|
-
|
|
1125
|
-
type DataOocList {
|
|
1126
|
-
items: [DataOoc!]!
|
|
1127
|
-
total: Int!
|
|
1128
|
-
}
|
|
1129
|
-
|
|
1130
|
-
input DataOocPatch {
|
|
1131
|
-
correctiveAction: String
|
|
1132
|
-
id: ID
|
|
1133
|
-
state: DataOocStatus
|
|
1134
|
-
}
|
|
1135
|
-
|
|
1136
|
-
"""Out of control data corrective action process progress status"""
|
|
1137
|
-
enum DataOocStatus {
|
|
1138
|
-
CORRECTED
|
|
1139
|
-
ISSUED
|
|
1140
|
-
REVIEWED
|
|
1141
|
-
}
|
|
1142
|
-
|
|
1143
|
-
"""Entity for DataSample"""
|
|
1144
|
-
type DataSample {
|
|
1145
|
-
collectedAt: Timestamp
|
|
1146
|
-
createdAt: Timestamp
|
|
1147
|
-
creator: User
|
|
1148
|
-
data: Object
|
|
1149
|
-
dataItems: [DataItem!]
|
|
1150
|
-
dataSet: DataSet!
|
|
1151
|
-
dataSetVersion: Float
|
|
1152
|
-
description: String
|
|
1153
|
-
domain: Domain
|
|
1154
|
-
id: ID!
|
|
1155
|
-
judgment: Object
|
|
1156
|
-
key01: String
|
|
1157
|
-
key02: String
|
|
1158
|
-
key03: String
|
|
1159
|
-
key04: String
|
|
1160
|
-
key05: String
|
|
1161
|
-
name: String!
|
|
1162
|
-
ooc: Boolean
|
|
1163
|
-
oos: Boolean
|
|
1164
|
-
partitionKeys: Object
|
|
1165
|
-
rawData: String
|
|
1166
|
-
source: String
|
|
1167
|
-
type: String
|
|
1168
|
-
updatedAt: Timestamp
|
|
1169
|
-
updater: User
|
|
1170
|
-
useCase: String
|
|
1171
|
-
workDate: String
|
|
1172
|
-
workShift: String
|
|
1173
|
-
}
|
|
1174
|
-
|
|
1175
|
-
type DataSampleList {
|
|
1176
|
-
items: [DataSample!]!
|
|
1177
|
-
total: Int!
|
|
1178
|
-
}
|
|
1179
|
-
|
|
1180
|
-
"""Entity for DataSensor"""
|
|
1181
|
-
type DataSensor {
|
|
1182
|
-
active: Boolean
|
|
1183
|
-
appliance: Appliance
|
|
1184
|
-
brand: String
|
|
1185
|
-
createdAt: Timestamp
|
|
1186
|
-
creator: User
|
|
1187
|
-
dataSet: DataSet
|
|
1188
|
-
description: String
|
|
1189
|
-
deviceId: String
|
|
1190
|
-
domain: Domain
|
|
1191
|
-
id: ID!
|
|
1192
|
-
model: String
|
|
1193
|
-
name: String!
|
|
1194
|
-
netmask: String
|
|
1195
|
-
refBy: String
|
|
1196
|
-
serialNo: String
|
|
1197
|
-
tag: String
|
|
1198
|
-
updatedAt: Timestamp
|
|
1199
|
-
updater: User
|
|
1200
|
-
}
|
|
1201
|
-
|
|
1202
|
-
type DataSensorList {
|
|
1203
|
-
items: [DataSensor!]!
|
|
1204
|
-
total: Int!
|
|
1205
|
-
}
|
|
1206
|
-
|
|
1207
|
-
input DataSensorPatch {
|
|
1208
|
-
active: Boolean
|
|
1209
|
-
appliance: ObjectRef
|
|
1210
|
-
brand: String
|
|
1211
|
-
cuFlag: String!
|
|
1212
|
-
dataSet: ObjectRef
|
|
1213
|
-
description: String
|
|
1214
|
-
deviceId: String
|
|
1215
|
-
id: ID
|
|
1216
|
-
model: String
|
|
1217
|
-
name: String
|
|
1218
|
-
netmask: String
|
|
1219
|
-
refBy: String
|
|
1220
|
-
serialNo: String
|
|
1221
|
-
tag: String
|
|
1222
|
-
}
|
|
1223
|
-
|
|
1224
|
-
"""Entity for DataSet"""
|
|
1225
|
-
type DataSet {
|
|
1226
|
-
active: Boolean
|
|
1227
|
-
|
|
1228
|
-
"""Approval line for handling OOC issues for that dataset"""
|
|
1229
|
-
approvalLine: [ApprovalLineItem!]
|
|
1230
|
-
|
|
1231
|
-
"""Who to contact for OOC issues"""
|
|
1232
|
-
assignees: [AssigneeItem!]
|
|
1233
|
-
createdAt: Timestamp
|
|
1234
|
-
creator: User
|
|
1235
|
-
dataItems: [DataItem!]
|
|
1236
|
-
dataKeySet: DataKeySet
|
|
1237
|
-
description: String
|
|
1238
|
-
domain: Domain
|
|
1239
|
-
entryBoard: Board
|
|
1240
|
-
|
|
1241
|
-
"""The person responsible for manually entering the data for that dataset"""
|
|
1242
|
-
entryRole: Role
|
|
1243
|
-
entryType: String
|
|
1244
|
-
entryView: String
|
|
1245
|
-
id: ID!
|
|
1246
|
-
latestCollectedAt: Timestamp
|
|
1247
|
-
monitorBoard: Board
|
|
1248
|
-
monitorType: String
|
|
1249
|
-
monitorView: String
|
|
1250
|
-
name: String!
|
|
1251
|
-
nextSchedule: Timestamp
|
|
1252
|
-
partitionKeys: Object
|
|
1253
|
-
prevSchedule: Timestamp
|
|
1254
|
-
reportTemplate: String
|
|
1255
|
-
reportType: String
|
|
1256
|
-
reportView: String
|
|
1257
|
-
schedule: String
|
|
1258
|
-
scheduleId: String
|
|
1259
|
-
status: DataSetState!
|
|
1260
|
-
summaryPeriod: String
|
|
1261
|
-
summaryScheduleId: String
|
|
1262
|
-
|
|
1263
|
-
"""The final authority on issues related to that dataset."""
|
|
1264
|
-
supervisoryRole: Role
|
|
1265
|
-
timezone: String
|
|
1266
|
-
type: String
|
|
1267
|
-
updatedAt: Timestamp
|
|
1268
|
-
updater: User
|
|
1269
|
-
useCase: String
|
|
1270
|
-
version: Float
|
|
1271
|
-
}
|
|
1272
|
-
|
|
1273
|
-
"""Entity for DataSetHistory"""
|
|
1274
|
-
type DataSetHistory {
|
|
1275
|
-
active: Boolean
|
|
1276
|
-
createdAt: Timestamp
|
|
1277
|
-
creator: User
|
|
1278
|
-
dataItems: [DataItem!]
|
|
1279
|
-
dataKeySet: DataKeySet
|
|
1280
|
-
description: String
|
|
1281
|
-
domain: Domain
|
|
1282
|
-
entryBoard: Board
|
|
1283
|
-
entryRole: Role
|
|
1284
|
-
entryType: String
|
|
1285
|
-
entryView: String
|
|
1286
|
-
id: ID!
|
|
1287
|
-
monitorBoard: Board
|
|
1288
|
-
monitorType: String
|
|
1289
|
-
monitorView: String
|
|
1290
|
-
name: String!
|
|
1291
|
-
partitionKeys: Object
|
|
1292
|
-
reportTemplate: String
|
|
1293
|
-
reportType: String
|
|
1294
|
-
reportView: String
|
|
1295
|
-
schedule: String
|
|
1296
|
-
supervisoryRole: Role
|
|
1297
|
-
timestamp: User!
|
|
1298
|
-
timezone: String
|
|
1299
|
-
type: String
|
|
1300
|
-
updatedAt: Timestamp
|
|
1301
|
-
updater: User
|
|
1302
|
-
useCase: String
|
|
1303
|
-
version: Float
|
|
1304
|
-
}
|
|
1305
|
-
|
|
1306
|
-
type DataSetHistoryList {
|
|
1307
|
-
items: [DataSetHistory!]!
|
|
1308
|
-
total: Int!
|
|
1309
|
-
}
|
|
1310
|
-
|
|
1311
|
-
type DataSetList {
|
|
1312
|
-
items: [DataSet!]!
|
|
1313
|
-
total: Int!
|
|
1314
|
-
}
|
|
1315
|
-
|
|
1316
|
-
input DataSetPatch {
|
|
1317
|
-
active: Boolean
|
|
1318
|
-
approvalLine: Object
|
|
1319
|
-
assignees: Object
|
|
1320
|
-
cuFlag: String!
|
|
1321
|
-
dataItems: [DataItemPatch!]
|
|
1322
|
-
dataKeySet: ObjectRef
|
|
1323
|
-
description: String
|
|
1324
|
-
entryRole: ObjectRef
|
|
1325
|
-
entryType: String
|
|
1326
|
-
entryView: String
|
|
1327
|
-
id: ID
|
|
1328
|
-
monitorType: String
|
|
1329
|
-
monitorView: String
|
|
1330
|
-
name: String
|
|
1331
|
-
partitionKeys: Object
|
|
1332
|
-
reportTemplate: Upload
|
|
1333
|
-
reportType: String
|
|
1334
|
-
reportView: String
|
|
1335
|
-
schedule: String
|
|
1336
|
-
summaryPeriod: String
|
|
1337
|
-
supervisoryRole: ObjectRef
|
|
1338
|
-
timezone: String
|
|
1339
|
-
type: String
|
|
1340
|
-
useCase: String
|
|
1341
|
-
}
|
|
1342
|
-
|
|
1343
|
-
type DataSetState {
|
|
1344
|
-
id: String!
|
|
1345
|
-
nextSchedule: Timestamp!
|
|
1346
|
-
scheduleId: String!
|
|
1347
|
-
startedAt: Timestamp!
|
|
1348
|
-
state: String!
|
|
1349
|
-
}
|
|
1350
|
-
|
|
1351
|
-
type DataSpec {
|
|
1352
|
-
description: String
|
|
1353
|
-
help: String
|
|
1354
|
-
name: String!
|
|
1355
|
-
specItems: [DataSpecItem!]
|
|
1356
|
-
}
|
|
1357
|
-
|
|
1358
|
-
type DataSpecItem {
|
|
1359
|
-
label: String!
|
|
1360
|
-
name: String!
|
|
1361
|
-
placeholder: String
|
|
1362
|
-
property: Object
|
|
1363
|
-
type: String!
|
|
1364
|
-
}
|
|
1365
|
-
|
|
1366
|
-
type DataSpecList {
|
|
1367
|
-
items: [DataSpec!]!
|
|
1368
|
-
total: Int!
|
|
1369
|
-
}
|
|
1370
|
-
|
|
1371
|
-
"""Entity for DataSummary"""
|
|
1372
|
-
type DataSummary {
|
|
1373
|
-
count: Float
|
|
1374
|
-
countOoc: Float
|
|
1375
|
-
countOos: Float
|
|
1376
|
-
createdAt: Timestamp
|
|
1377
|
-
creator: User
|
|
1378
|
-
data01: Float
|
|
1379
|
-
data02: Float
|
|
1380
|
-
data03: Float
|
|
1381
|
-
data04: Float
|
|
1382
|
-
data05: Float
|
|
1383
|
-
dataItems: [DataItem!]
|
|
1384
|
-
dataSet: DataSet!
|
|
1385
|
-
dataSetVersion: Float
|
|
1386
|
-
date: String
|
|
1387
|
-
description: String
|
|
1388
|
-
domain: Domain
|
|
1389
|
-
id: ID!
|
|
1390
|
-
key01: String
|
|
1391
|
-
key02: String
|
|
1392
|
-
key03: String
|
|
1393
|
-
key04: String
|
|
1394
|
-
key05: String
|
|
1395
|
-
name: String
|
|
1396
|
-
period: String
|
|
1397
|
-
summary: Object
|
|
1398
|
-
type: String
|
|
1399
|
-
updatedAt: Timestamp
|
|
1400
|
-
updater: User
|
|
1401
|
-
}
|
|
1402
|
-
|
|
1403
|
-
type DataSummaryList {
|
|
1404
|
-
items: [DataSummary!]!
|
|
1405
|
-
total: Int!
|
|
1406
|
-
}
|
|
1407
|
-
|
|
1408
|
-
"""Date custom scalar type"""
|
|
1409
|
-
scalar Date
|
|
1410
|
-
|
|
1411
|
-
"""Entity for Department"""
|
|
1412
|
-
type Department {
|
|
1413
|
-
active: Boolean
|
|
1414
|
-
children: [Department!]!
|
|
1415
|
-
controlNo: String!
|
|
1416
|
-
createdAt: Timestamp
|
|
1417
|
-
creator: User
|
|
1418
|
-
deletedAt: Timestamp
|
|
1419
|
-
description: String
|
|
1420
|
-
domain: Domain
|
|
1421
|
-
extension: String
|
|
1422
|
-
id: ID!
|
|
1423
|
-
manager: Employee
|
|
1424
|
-
members: [Employee!]!
|
|
1425
|
-
name: String
|
|
1426
|
-
parent: Department
|
|
1427
|
-
picture: String
|
|
1428
|
-
state: String
|
|
1429
|
-
updatedAt: Timestamp
|
|
1430
|
-
updater: User
|
|
1431
|
-
version: Float
|
|
1432
|
-
}
|
|
1433
|
-
|
|
1434
|
-
type DepartmentList {
|
|
1435
|
-
items: [Department!]!
|
|
1436
|
-
total: Int!
|
|
1437
|
-
}
|
|
1438
|
-
|
|
1439
|
-
input DepartmentPatch {
|
|
1440
|
-
active: Boolean
|
|
1441
|
-
controlNo: String
|
|
1442
|
-
cuFlag: String
|
|
1443
|
-
description: String
|
|
1444
|
-
id: ID
|
|
1445
|
-
manager: ObjectRefForEmployee
|
|
1446
|
-
name: String
|
|
1447
|
-
parent: ObjectRef
|
|
1448
|
-
picture: Upload
|
|
1449
|
-
state: DepartmentStatus
|
|
1450
|
-
}
|
|
1451
|
-
|
|
1452
|
-
"""state enumeration of a department"""
|
|
1453
|
-
enum DepartmentStatus {
|
|
1454
|
-
STATUS_A
|
|
1455
|
-
STATUS_B
|
|
1456
|
-
}
|
|
1457
|
-
|
|
1458
|
-
type Domain {
|
|
1459
|
-
attributes: Object
|
|
1460
|
-
brandImage: String
|
|
1461
|
-
brandName: String
|
|
1462
|
-
children: Domain
|
|
1463
|
-
contentImage: String
|
|
1464
|
-
createdAt: Timestamp
|
|
1465
|
-
description: String
|
|
1466
|
-
extType: String
|
|
1467
|
-
id: ID!
|
|
1468
|
-
name: String!
|
|
1469
|
-
owner: String
|
|
1470
|
-
ownerUser: User
|
|
1471
|
-
parent: Domain
|
|
1472
|
-
subdomain: String
|
|
1473
|
-
systemFlag: Boolean
|
|
1474
|
-
theme: String
|
|
1475
|
-
timezone: String
|
|
1476
|
-
updatedAt: Timestamp
|
|
1477
|
-
workShifts: [WorkShift!]!
|
|
1478
|
-
}
|
|
1479
|
-
|
|
1480
|
-
input DomainGeneratorInput {
|
|
1481
|
-
description: String
|
|
1482
|
-
name: String!
|
|
1483
|
-
}
|
|
1484
|
-
|
|
1485
|
-
input DomainInput {
|
|
1486
|
-
description: String
|
|
1487
|
-
name: String!
|
|
1488
|
-
}
|
|
1489
|
-
|
|
1490
|
-
type DomainList {
|
|
1491
|
-
items: [Domain!]
|
|
1492
|
-
total: Int
|
|
1493
|
-
}
|
|
1494
|
-
|
|
1495
|
-
input DomainPatch {
|
|
1496
|
-
attributes: Object
|
|
1497
|
-
brandImage: String
|
|
1498
|
-
brandName: String
|
|
1499
|
-
contentImage: String
|
|
1500
|
-
description: String
|
|
1501
|
-
id: String
|
|
1502
|
-
name: String
|
|
1503
|
-
owner: String
|
|
1504
|
-
parent: ObjectRef
|
|
1505
|
-
subdomain: String
|
|
1506
|
-
systemFlag: Boolean
|
|
1507
|
-
theme: String
|
|
1508
|
-
timezone: String
|
|
1509
|
-
}
|
|
1510
|
-
|
|
1511
|
-
input DomainUserRoleInput {
|
|
1512
|
-
domain: DomainInput!
|
|
1513
|
-
roles: [NewRole!]!
|
|
1514
|
-
users: [NewUserByDomainWizardInput!]!
|
|
1515
|
-
}
|
|
1516
|
-
|
|
1517
|
-
type DynamicDataSummary {
|
|
1518
|
-
count: Float
|
|
1519
|
-
countOoc: Float
|
|
1520
|
-
countOos: Float
|
|
1521
|
-
data01: Float
|
|
1522
|
-
data02: Float
|
|
1523
|
-
data03: Float
|
|
1524
|
-
data04: Float
|
|
1525
|
-
data05: Float
|
|
1526
|
-
date: String
|
|
1527
|
-
key01: String
|
|
1528
|
-
key02: String
|
|
1529
|
-
key03: String
|
|
1530
|
-
key04: String
|
|
1531
|
-
key05: String
|
|
1532
|
-
month: String
|
|
1533
|
-
period: String
|
|
1534
|
-
}
|
|
1535
|
-
|
|
1536
|
-
"""Entity for Employee"""
|
|
1537
|
-
type Employee {
|
|
1538
|
-
active: Boolean
|
|
1539
|
-
address: String!
|
|
1540
|
-
approvalLines: [ApprovalLine!]!
|
|
1541
|
-
contact: Contact
|
|
1542
|
-
controlNo: String!
|
|
1543
|
-
createdAt: Timestamp
|
|
1544
|
-
creator: User
|
|
1545
|
-
deletedAt: Timestamp
|
|
1546
|
-
department: Department
|
|
1547
|
-
domain: Domain
|
|
1548
|
-
email: String
|
|
1549
|
-
extension: String
|
|
1550
|
-
hiredOn: String
|
|
1551
|
-
id: ID!
|
|
1552
|
-
manages: [Department!]!
|
|
1553
|
-
name: String
|
|
1554
|
-
note: String
|
|
1555
|
-
phone: String
|
|
1556
|
-
photo: String
|
|
1557
|
-
profile: Profile
|
|
1558
|
-
supervises: [Employee!]!
|
|
1559
|
-
supervisor: Employee
|
|
1560
|
-
type: String
|
|
1561
|
-
updatedAt: Timestamp
|
|
1562
|
-
updater: User
|
|
1563
|
-
user: User
|
|
1564
|
-
version: Float
|
|
1565
|
-
}
|
|
1566
|
-
|
|
1567
|
-
type EmployeeList {
|
|
1568
|
-
items: [Employee!]!
|
|
1569
|
-
total: Int!
|
|
1570
|
-
}
|
|
1571
|
-
|
|
1572
|
-
input EmployeePatch {
|
|
1573
|
-
active: Boolean
|
|
1574
|
-
controlNo: String
|
|
1575
|
-
cuFlag: String
|
|
1576
|
-
department: ObjectRef
|
|
1577
|
-
hiredOn: String
|
|
1578
|
-
id: ID
|
|
1579
|
-
name: String
|
|
1580
|
-
note: String
|
|
1581
|
-
photo: Upload
|
|
1582
|
-
supervisor: ObjectRefForEmployee
|
|
1583
|
-
type: EmployeeType
|
|
1584
|
-
user: ObjectRefForUser
|
|
1585
|
-
}
|
|
1586
|
-
|
|
1587
|
-
"""type enumeration of a employee"""
|
|
1588
|
-
enum EmployeeType {
|
|
1589
|
-
FULLTIME
|
|
1590
|
-
PARTTIME
|
|
1591
|
-
TEMPORARY
|
|
1592
|
-
}
|
|
1593
|
-
|
|
1594
|
-
"""Entity for Entity"""
|
|
1595
|
-
type Entity {
|
|
1596
|
-
active: Boolean
|
|
1597
|
-
association: String
|
|
1598
|
-
bundle: String!
|
|
1599
|
-
children: [Entity!]
|
|
1600
|
-
columns: [EntityColumn!]
|
|
1601
|
-
createdAt: Timestamp
|
|
1602
|
-
creator: User
|
|
1603
|
-
dataProp: String
|
|
1604
|
-
delStrategy: String
|
|
1605
|
-
description: String
|
|
1606
|
-
domain: Domain
|
|
1607
|
-
extEntity: Boolean
|
|
1608
|
-
fixedColumns: Float
|
|
1609
|
-
id: ID!
|
|
1610
|
-
idField: String
|
|
1611
|
-
idType: String
|
|
1612
|
-
master: Entity
|
|
1613
|
-
multiSaveUrl: String
|
|
1614
|
-
name: String!
|
|
1615
|
-
refField: String
|
|
1616
|
-
searchUrl: String
|
|
1617
|
-
tableName: String!
|
|
1618
|
-
titleField: String
|
|
1619
|
-
updatedAt: Timestamp
|
|
1620
|
-
updater: User
|
|
1621
|
-
}
|
|
1622
|
-
|
|
1623
|
-
"""Entity for EntityColumn"""
|
|
1624
|
-
type EntityColumn {
|
|
1625
|
-
colSize: Float
|
|
1626
|
-
colType: String!
|
|
1627
|
-
createdAt: Timestamp
|
|
1628
|
-
creator: User
|
|
1629
|
-
defVal: String
|
|
1630
|
-
description: String
|
|
1631
|
-
domain: Domain
|
|
1632
|
-
entity: Entity!
|
|
1633
|
-
formEditor: String
|
|
1634
|
-
formFormat: String
|
|
1635
|
-
formValidator: String
|
|
1636
|
-
gridAlign: String
|
|
1637
|
-
gridEditor: String
|
|
1638
|
-
gridFormat: String
|
|
1639
|
-
gridRank: Float
|
|
1640
|
-
gridValidator: String
|
|
1641
|
-
gridWidth: Float
|
|
1642
|
-
id: ID!
|
|
1643
|
-
ignoreOnSav: Boolean
|
|
1644
|
-
name: String!
|
|
1645
|
-
nullable: Boolean
|
|
1646
|
-
rangeVal: String
|
|
1647
|
-
rank: Float
|
|
1648
|
-
refName: String
|
|
1649
|
-
refParams: String
|
|
1650
|
-
refRelated: String
|
|
1651
|
-
refType: String
|
|
1652
|
-
refUrl: String
|
|
1653
|
-
reverseSort: Boolean
|
|
1654
|
-
searchEditor: String
|
|
1655
|
-
searchInitVal: String
|
|
1656
|
-
searchName: String
|
|
1657
|
-
searchOper: String
|
|
1658
|
-
searchRank: Float
|
|
1659
|
-
sortRank: Float
|
|
1660
|
-
term: String
|
|
1661
|
-
uniqRank: Float
|
|
1662
|
-
updatedAt: Timestamp
|
|
1663
|
-
updater: User
|
|
1664
|
-
virtualField: Boolean
|
|
1665
|
-
}
|
|
1666
|
-
|
|
1667
|
-
type EntityColumnList {
|
|
1668
|
-
items: [EntityColumn!]!
|
|
1669
|
-
total: Int!
|
|
1670
|
-
}
|
|
1671
|
-
|
|
1672
|
-
"""EntityColumn of Entity"""
|
|
1673
|
-
type EntityColumnMetadata {
|
|
1674
|
-
enum: [Any!]
|
|
1675
|
-
generatedType: String
|
|
1676
|
-
isArray: Boolean
|
|
1677
|
-
isNullable: Boolean!
|
|
1678
|
-
isPrimary: Boolean
|
|
1679
|
-
isReadonly: Boolean
|
|
1680
|
-
isUpdateDate: Boolean
|
|
1681
|
-
isVersion: Boolean
|
|
1682
|
-
length: Float
|
|
1683
|
-
propertyName: String!
|
|
1684
|
-
referenceColumn: Any
|
|
1685
|
-
relationMetadata: EntityRelationMetadata
|
|
1686
|
-
target: Any
|
|
1687
|
-
type: Any!
|
|
1688
|
-
width: Int
|
|
1689
|
-
}
|
|
1690
|
-
|
|
1691
|
-
input EntityColumnPatch {
|
|
1692
|
-
colSize: Int
|
|
1693
|
-
colType: String
|
|
1694
|
-
cuFlag: String
|
|
1695
|
-
defVal: String
|
|
1696
|
-
description: String
|
|
1697
|
-
entity: ObjectRef
|
|
1698
|
-
formEditor: String
|
|
1699
|
-
formFormat: String
|
|
1700
|
-
formValidator: String
|
|
1701
|
-
gridAlign: String
|
|
1702
|
-
gridEditor: String
|
|
1703
|
-
gridFormat: String
|
|
1704
|
-
gridRank: Int
|
|
1705
|
-
gridValidator: String
|
|
1706
|
-
gridWidth: Int
|
|
1707
|
-
id: ID
|
|
1708
|
-
ignoreOnSav: Boolean
|
|
1709
|
-
name: String
|
|
1710
|
-
nullable: Boolean
|
|
1711
|
-
rangeVal: String
|
|
1712
|
-
rank: Int
|
|
1713
|
-
refName: String
|
|
1714
|
-
refParams: String
|
|
1715
|
-
refRelated: String
|
|
1716
|
-
refType: String
|
|
1717
|
-
refUrl: String
|
|
1718
|
-
reverseSort: Boolean
|
|
1719
|
-
searchEditor: String
|
|
1720
|
-
searchInitVal: String
|
|
1721
|
-
searchName: String
|
|
1722
|
-
searchOper: String
|
|
1723
|
-
searchRank: Int
|
|
1724
|
-
sortRank: Float
|
|
1725
|
-
term: String
|
|
1726
|
-
uniqRank: Int
|
|
1727
|
-
virtualField: Boolean
|
|
1728
|
-
}
|
|
1729
|
-
|
|
1730
|
-
type EntityList {
|
|
1731
|
-
items: [Entity!]!
|
|
1732
|
-
total: Int!
|
|
1733
|
-
}
|
|
1734
|
-
|
|
1735
|
-
"""Entity for EntityMetadata"""
|
|
1736
|
-
type EntityMetadata {
|
|
1737
|
-
columns: [EntityColumnMetadata!]
|
|
1738
|
-
name: String!
|
|
1739
|
-
}
|
|
1740
|
-
|
|
1741
|
-
input EntityPatch {
|
|
1742
|
-
active: Boolean
|
|
1743
|
-
association: String
|
|
1744
|
-
bundle: String
|
|
1745
|
-
children: [String!]
|
|
1746
|
-
columns: [String!]
|
|
1747
|
-
cuFlag: String
|
|
1748
|
-
dataProp: String
|
|
1749
|
-
delStrategy: String
|
|
1750
|
-
description: String
|
|
1751
|
-
extEntity: Boolean
|
|
1752
|
-
fixedColumns: Int
|
|
1753
|
-
id: ID
|
|
1754
|
-
idField: String
|
|
1755
|
-
idType: String
|
|
1756
|
-
master: String
|
|
1757
|
-
multiSaveUrl: String
|
|
1758
|
-
name: String
|
|
1759
|
-
refField: String
|
|
1760
|
-
searchUrl: String
|
|
1761
|
-
tableName: String
|
|
1762
|
-
titleField: String
|
|
1763
|
-
}
|
|
1764
|
-
|
|
1765
|
-
"""RelationType of EntityColumn"""
|
|
1766
|
-
type EntityRelationMetadata {
|
|
1767
|
-
isManyToOne: Boolean
|
|
1768
|
-
isOneToMany: Boolean
|
|
1769
|
-
isOneToOne: Boolean
|
|
1770
|
-
joinColumns: [EntityColumnMetadata!]
|
|
1771
|
-
joinTableName: String
|
|
1772
|
-
relationType: Boolean
|
|
1773
|
-
}
|
|
1774
|
-
|
|
1775
|
-
input Filter {
|
|
1776
|
-
name: String!
|
|
1777
|
-
operator: String!
|
|
1778
|
-
relation: Boolean
|
|
1779
|
-
value: Any
|
|
1780
|
-
}
|
|
1781
|
-
|
|
1782
|
-
"""Entity for Font"""
|
|
1783
|
-
type Font {
|
|
1784
|
-
active: Boolean!
|
|
1785
|
-
createdAt: Timestamp
|
|
1786
|
-
creator: User
|
|
1787
|
-
domain: Domain
|
|
1788
|
-
files: [Attachment!]
|
|
1789
|
-
id: ID!
|
|
1790
|
-
name: String!
|
|
1791
|
-
path: String
|
|
1792
|
-
provider: String!
|
|
1793
|
-
updatedAt: Timestamp
|
|
1794
|
-
updater: User
|
|
1795
|
-
uri: String
|
|
1796
|
-
}
|
|
1797
|
-
|
|
1798
|
-
type FontList {
|
|
1799
|
-
items: [Font!]!
|
|
1800
|
-
total: Int!
|
|
1801
|
-
}
|
|
1802
|
-
|
|
1803
|
-
input FontPatch {
|
|
1804
|
-
active: Boolean
|
|
1805
|
-
files: [Upload!]
|
|
1806
|
-
name: String
|
|
1807
|
-
path: String
|
|
1808
|
-
provider: String
|
|
1809
|
-
uri: String
|
|
1810
|
-
}
|
|
1811
|
-
|
|
1812
|
-
type GrantedRole {
|
|
1813
|
-
domain: Domain!
|
|
1814
|
-
id: ID!
|
|
1815
|
-
role: Role!
|
|
1816
|
-
}
|
|
1817
|
-
|
|
1818
|
-
"""Entity for Board Management Group"""
|
|
1819
|
-
type Group {
|
|
1820
|
-
boards: [Board!]
|
|
1821
|
-
createdAt: Timestamp
|
|
1822
|
-
creator: User
|
|
1823
|
-
description: String
|
|
1824
|
-
domain: Domain
|
|
1825
|
-
id: ID!
|
|
1826
|
-
name: String!
|
|
1827
|
-
updatedAt: Timestamp
|
|
1828
|
-
updater: User
|
|
1829
|
-
}
|
|
1830
|
-
|
|
1831
|
-
type GroupList {
|
|
1832
|
-
items: [Group!]!
|
|
1833
|
-
total: Int!
|
|
1834
|
-
}
|
|
1835
|
-
|
|
1836
|
-
input GroupPatch {
|
|
1837
|
-
description: String
|
|
1838
|
-
name: String
|
|
1839
|
-
}
|
|
1840
|
-
|
|
1841
|
-
input ImageCompletionInput {
|
|
1842
|
-
count: Float!
|
|
1843
|
-
description: String!
|
|
1844
|
-
size: String!
|
|
1845
|
-
}
|
|
1846
|
-
|
|
1847
|
-
type ImageCompletionOutput {
|
|
1848
|
-
images: String
|
|
1849
|
-
}
|
|
1850
|
-
|
|
1851
|
-
enum InheritedValueType {
|
|
1852
|
-
Include
|
|
1853
|
-
None
|
|
1854
|
-
Only
|
|
1855
|
-
}
|
|
1856
|
-
|
|
1857
|
-
"""Entity for InstallableActivity"""
|
|
1858
|
-
type InstallableActivity {
|
|
1859
|
-
activity: Activity
|
|
1860
|
-
activityType: String
|
|
1861
|
-
category: String
|
|
1862
|
-
description: String
|
|
1863
|
-
model: [ActivityModelItem!]
|
|
1864
|
-
|
|
1865
|
-
"""
|
|
1866
|
-
Parallel or sequential are properties as a multi-instance activity, otherwise it means a single instance.
|
|
1867
|
-
"""
|
|
1868
|
-
multiple: String
|
|
1869
|
-
name: String
|
|
1870
|
-
priority: Float
|
|
1871
|
-
|
|
1872
|
-
"""Provider information of the Activity"""
|
|
1873
|
-
provider: String
|
|
1874
|
-
|
|
1875
|
-
"""Release information of the Activity"""
|
|
1876
|
-
release: String
|
|
1877
|
-
reportSource: String
|
|
1878
|
-
reportType: String
|
|
1879
|
-
startingType: String
|
|
1880
|
-
thumbnail: String
|
|
1881
|
-
uiSource: String
|
|
1882
|
-
uiType: String
|
|
1883
|
-
viewSource: String
|
|
1884
|
-
viewType: String
|
|
1885
|
-
}
|
|
1886
|
-
|
|
1887
|
-
type InstallableActivityList {
|
|
1888
|
-
items: [InstallableActivity!]!
|
|
1889
|
-
total: Int!
|
|
1890
|
-
}
|
|
1891
|
-
|
|
1892
|
-
type Invitation {
|
|
1893
|
-
createdAt: Timestamp
|
|
1894
|
-
creator: User
|
|
1895
|
-
email: String!
|
|
1896
|
-
id: ID!
|
|
1897
|
-
reference: String!
|
|
1898
|
-
token: String!
|
|
1899
|
-
type: String!
|
|
1900
|
-
updatedAt: Timestamp
|
|
1901
|
-
updater: User
|
|
1902
|
-
}
|
|
1903
|
-
|
|
1904
|
-
type InvitationList {
|
|
1905
|
-
items: [Invitation!]
|
|
1906
|
-
total: Int
|
|
1907
|
-
}
|
|
1908
|
-
|
|
1909
|
-
"""Entity for LiteMenu"""
|
|
1910
|
-
type LiteMenu {
|
|
1911
|
-
active: Boolean
|
|
1912
|
-
appName: String
|
|
1913
|
-
board: Board
|
|
1914
|
-
createdAt: Timestamp
|
|
1915
|
-
creator: User
|
|
1916
|
-
description: String
|
|
1917
|
-
domain: Domain
|
|
1918
|
-
icon: String
|
|
1919
|
-
id: ID!
|
|
1920
|
-
name: String!
|
|
1921
|
-
parent: String
|
|
1922
|
-
rank: Int
|
|
1923
|
-
type: String
|
|
1924
|
-
updatedAt: Timestamp
|
|
1925
|
-
updater: User
|
|
1926
|
-
value: String
|
|
1927
|
-
}
|
|
1928
|
-
|
|
1929
|
-
type LiteMenuList {
|
|
1930
|
-
items: [LiteMenu!]!
|
|
1931
|
-
total: Int!
|
|
1932
|
-
}
|
|
1933
|
-
|
|
1934
|
-
input LiteMenuPatch {
|
|
1935
|
-
active: Boolean
|
|
1936
|
-
appName: String
|
|
1937
|
-
description: String
|
|
1938
|
-
icon: String
|
|
1939
|
-
name: String
|
|
1940
|
-
parent: String
|
|
1941
|
-
rank: Int
|
|
1942
|
-
type: String
|
|
1943
|
-
value: String
|
|
1944
|
-
}
|
|
1945
|
-
|
|
1946
|
-
type Log {
|
|
1947
|
-
"""log level (error, warning, info, ..)"""
|
|
1948
|
-
level: String!
|
|
1949
|
-
|
|
1950
|
-
"""log body message"""
|
|
1951
|
-
message: String!
|
|
1952
|
-
|
|
1953
|
-
"""the source of the log"""
|
|
1954
|
-
source: Object!
|
|
1955
|
-
|
|
1956
|
-
"""timestamp the log occurred"""
|
|
1957
|
-
timestamp: String!
|
|
1958
|
-
}
|
|
1959
|
-
|
|
1960
|
-
type LoginHistory {
|
|
1961
|
-
accessDomain: Domain!
|
|
1962
|
-
accessUser: User!
|
|
1963
|
-
accessedAt: Timestamp
|
|
1964
|
-
accessorIp: String
|
|
1965
|
-
id: ID!
|
|
1966
|
-
}
|
|
1967
|
-
|
|
1968
|
-
"""Entity for Menu"""
|
|
1969
|
-
type Menu {
|
|
1970
|
-
buttons: [MenuButton!]!
|
|
1971
|
-
category: String
|
|
1972
|
-
children: [Menu!]!
|
|
1973
|
-
columns: [MenuColumn!]!
|
|
1974
|
-
createdAt: Timestamp
|
|
1975
|
-
creator: User
|
|
1976
|
-
description: String
|
|
1977
|
-
detailFormId: String
|
|
1978
|
-
detailLayout: String
|
|
1979
|
-
domain: Domain
|
|
1980
|
-
fixedColumns: Float
|
|
1981
|
-
gridSaveUrl: String
|
|
1982
|
-
hiddenFlag: Boolean
|
|
1983
|
-
iconPath: String
|
|
1984
|
-
id: ID!
|
|
1985
|
-
idField: String
|
|
1986
|
-
itemsProp: String
|
|
1987
|
-
menuType: String
|
|
1988
|
-
name: String
|
|
1989
|
-
pagination: Boolean
|
|
1990
|
-
parent: Menu
|
|
1991
|
-
rank: Float
|
|
1992
|
-
resourceId: String
|
|
1993
|
-
resourceName: String
|
|
1994
|
-
resourceType: String
|
|
1995
|
-
resourceUrl: String
|
|
1996
|
-
role: Role
|
|
1997
|
-
roles: [Role!]
|
|
1998
|
-
routing: String
|
|
1999
|
-
routingType: String
|
|
2000
|
-
template: String
|
|
2001
|
-
titleField: String
|
|
2002
|
-
totalProp: String
|
|
2003
|
-
updatedAt: Timestamp
|
|
2004
|
-
updater: User
|
|
2005
|
-
}
|
|
2006
|
-
|
|
2007
|
-
"""Entity for MenuButton"""
|
|
2008
|
-
type MenuButton {
|
|
2009
|
-
auth: String
|
|
2010
|
-
createdAt: Timestamp
|
|
2011
|
-
creator: User
|
|
2012
|
-
domain: Domain
|
|
2013
|
-
icon: String
|
|
2014
|
-
id: ID!
|
|
2015
|
-
logic: String
|
|
2016
|
-
menu: Menu
|
|
2017
|
-
rank: Float
|
|
2018
|
-
style: String
|
|
2019
|
-
text: String
|
|
2020
|
-
updatedAt: Timestamp
|
|
2021
|
-
updater: User
|
|
2022
|
-
}
|
|
2023
|
-
|
|
2024
|
-
type MenuButtonList {
|
|
2025
|
-
items: [MenuButton!]!
|
|
2026
|
-
total: Int!
|
|
2027
|
-
}
|
|
2028
|
-
|
|
2029
|
-
input MenuButtonPatch {
|
|
2030
|
-
auth: String
|
|
2031
|
-
icon: String
|
|
2032
|
-
logic: String
|
|
2033
|
-
menu: String
|
|
2034
|
-
rank: Int
|
|
2035
|
-
style: String
|
|
2036
|
-
text: String
|
|
2037
|
-
}
|
|
2038
|
-
|
|
2039
|
-
"""Entity for MenuColumn"""
|
|
2040
|
-
type MenuColumn {
|
|
2041
|
-
colSize: Float
|
|
2042
|
-
colType: String
|
|
2043
|
-
createdAt: Timestamp
|
|
2044
|
-
creator: User
|
|
2045
|
-
defVal: String
|
|
2046
|
-
description: String
|
|
2047
|
-
domain: Domain
|
|
2048
|
-
extField: Boolean
|
|
2049
|
-
formEditor: String
|
|
2050
|
-
formFormat: String
|
|
2051
|
-
formValidator: String
|
|
2052
|
-
gridAlign: String
|
|
2053
|
-
gridEditor: String
|
|
2054
|
-
gridFormat: String
|
|
2055
|
-
gridRank: Float
|
|
2056
|
-
gridValidator: String
|
|
2057
|
-
gridWidth: Float
|
|
2058
|
-
id: ID!
|
|
2059
|
-
ignoreOnSave: Boolean
|
|
2060
|
-
menu: Menu
|
|
2061
|
-
name: String!
|
|
2062
|
-
nullable: Boolean
|
|
2063
|
-
rangeVal: String
|
|
2064
|
-
rank: Float
|
|
2065
|
-
refName: String
|
|
2066
|
-
refParams: String
|
|
2067
|
-
refRelated: String
|
|
2068
|
-
refType: String
|
|
2069
|
-
refUrl: String
|
|
2070
|
-
reverseSort: Boolean
|
|
2071
|
-
searchEditor: String
|
|
2072
|
-
searchInitVal: String
|
|
2073
|
-
searchName: String
|
|
2074
|
-
searchOper: String
|
|
2075
|
-
searchRank: Float
|
|
2076
|
-
sortRank: Float
|
|
2077
|
-
term: String
|
|
2078
|
-
uniqRank: Float
|
|
2079
|
-
updatedAt: Timestamp
|
|
2080
|
-
updater: User
|
|
2081
|
-
virtualField: Boolean
|
|
2082
|
-
}
|
|
2083
|
-
|
|
2084
|
-
type MenuColumnList {
|
|
2085
|
-
items: [MenuColumn!]!
|
|
2086
|
-
total: Int!
|
|
2087
|
-
}
|
|
2088
|
-
|
|
2089
|
-
input MenuColumnPatch {
|
|
2090
|
-
colSize: Int
|
|
2091
|
-
colType: String
|
|
2092
|
-
defVal: String
|
|
2093
|
-
description: String
|
|
2094
|
-
extField: Boolean
|
|
2095
|
-
formEditor: String
|
|
2096
|
-
formFormat: String
|
|
2097
|
-
formValidator: String
|
|
2098
|
-
gridAlign: String
|
|
2099
|
-
gridEditor: String
|
|
2100
|
-
gridFormat: String
|
|
2101
|
-
gridRank: Int
|
|
2102
|
-
gridValidator: String
|
|
2103
|
-
gridWidth: Int
|
|
2104
|
-
ignoreOnSave: Boolean
|
|
2105
|
-
menu: String
|
|
2106
|
-
name: String
|
|
2107
|
-
nullable: Boolean
|
|
2108
|
-
rangeVal: String
|
|
2109
|
-
rank: Int
|
|
2110
|
-
refName: String
|
|
2111
|
-
refParams: String
|
|
2112
|
-
refRelated: String
|
|
2113
|
-
refType: String
|
|
2114
|
-
refUrl: String
|
|
2115
|
-
reverseSort: Boolean
|
|
2116
|
-
searchEditor: String
|
|
2117
|
-
searchInitVal: String
|
|
2118
|
-
searchName: String
|
|
2119
|
-
searchOper: String
|
|
2120
|
-
searchRank: Int
|
|
2121
|
-
sortRank: Int
|
|
2122
|
-
term: String
|
|
2123
|
-
uniqRank: Int
|
|
2124
|
-
virtualField: Boolean
|
|
2125
|
-
}
|
|
2126
|
-
|
|
2127
|
-
"""Entity for MenuDetail"""
|
|
2128
|
-
type MenuDetail {
|
|
2129
|
-
association: String
|
|
2130
|
-
buttons: [MenuDetailButton!]
|
|
2131
|
-
columns: [MenuDetailColumn!]
|
|
2132
|
-
createdAt: Timestamp
|
|
2133
|
-
creator: User
|
|
2134
|
-
customView: String
|
|
2135
|
-
dataProp: String
|
|
2136
|
-
domain: Domain
|
|
2137
|
-
entityId: String
|
|
2138
|
-
id: ID!
|
|
2139
|
-
masterField: String
|
|
2140
|
-
menu: Menu
|
|
2141
|
-
name: String!
|
|
2142
|
-
saveUrl: String
|
|
2143
|
-
searchUrl: String
|
|
2144
|
-
updatedAt: Timestamp
|
|
2145
|
-
updater: User
|
|
2146
|
-
viewSection: String
|
|
2147
|
-
}
|
|
2148
|
-
|
|
2149
|
-
"""Entity for MenuDetailButton"""
|
|
2150
|
-
type MenuDetailButton {
|
|
2151
|
-
createdAt: Timestamp
|
|
2152
|
-
creator: User
|
|
2153
|
-
domain: Domain
|
|
2154
|
-
icon: String
|
|
2155
|
-
id: ID!
|
|
2156
|
-
logic: String
|
|
2157
|
-
menuDetail: MenuDetail
|
|
2158
|
-
rank: Float
|
|
2159
|
-
style: String
|
|
2160
|
-
text: String
|
|
2161
|
-
updatedAt: Timestamp
|
|
2162
|
-
updater: User
|
|
2163
|
-
}
|
|
2164
|
-
|
|
2165
|
-
type MenuDetailButtonList {
|
|
2166
|
-
items: [MenuDetailButton!]!
|
|
2167
|
-
total: Int!
|
|
2168
|
-
}
|
|
2169
|
-
|
|
2170
|
-
input MenuDetailButtonPatch {
|
|
2171
|
-
icon: String
|
|
2172
|
-
logic: String
|
|
2173
|
-
menuDetail: String
|
|
2174
|
-
rank: Int
|
|
2175
|
-
style: String
|
|
2176
|
-
text: String
|
|
2177
|
-
}
|
|
2178
|
-
|
|
2179
|
-
"""Entity for MenuDetailColumn"""
|
|
2180
|
-
type MenuDetailColumn {
|
|
2181
|
-
colSize: Float
|
|
2182
|
-
colType: String
|
|
2183
|
-
createdAt: Timestamp
|
|
2184
|
-
creator: User
|
|
2185
|
-
defVal: String
|
|
2186
|
-
description: String
|
|
2187
|
-
domain: Domain
|
|
2188
|
-
extField: Boolean
|
|
2189
|
-
formEditor: String
|
|
2190
|
-
formFormat: String
|
|
2191
|
-
formValidator: String
|
|
2192
|
-
gridAlign: String
|
|
2193
|
-
gridEditor: String
|
|
2194
|
-
gridFormat: String
|
|
2195
|
-
gridRank: Float
|
|
2196
|
-
gridValidator: String
|
|
2197
|
-
gridWidth: Float
|
|
2198
|
-
id: ID!
|
|
2199
|
-
ignoreOnSave: Boolean
|
|
2200
|
-
menuDetail: MenuDetail
|
|
2201
|
-
name: String
|
|
2202
|
-
nullable: Boolean
|
|
2203
|
-
rangeVal: String
|
|
2204
|
-
rank: Float
|
|
2205
|
-
refName: String
|
|
2206
|
-
refParams: String
|
|
2207
|
-
refRelated: String
|
|
2208
|
-
refType: String
|
|
2209
|
-
refUrl: String
|
|
2210
|
-
reverseSort: Boolean
|
|
2211
|
-
searchEditor: String
|
|
2212
|
-
searchInitVal: String
|
|
2213
|
-
searchName: String
|
|
2214
|
-
searchOper: String
|
|
2215
|
-
searchRank: Float
|
|
2216
|
-
sortRank: Float
|
|
2217
|
-
term: String
|
|
2218
|
-
uniqRank: Float
|
|
2219
|
-
updatedAt: Timestamp
|
|
2220
|
-
updater: User
|
|
2221
|
-
virtualField: Boolean
|
|
2222
|
-
}
|
|
2223
|
-
|
|
2224
|
-
type MenuDetailColumnList {
|
|
2225
|
-
items: [MenuDetailColumn!]!
|
|
2226
|
-
total: Int!
|
|
2227
|
-
}
|
|
2228
|
-
|
|
2229
|
-
input MenuDetailColumnPatch {
|
|
2230
|
-
colSize: Int
|
|
2231
|
-
colType: String!
|
|
2232
|
-
defVal: String
|
|
2233
|
-
description: String
|
|
2234
|
-
extField: Boolean
|
|
2235
|
-
formEditor: String
|
|
2236
|
-
formFormat: String
|
|
2237
|
-
formValidator: String
|
|
2238
|
-
gridAlign: String
|
|
2239
|
-
gridEditor: String
|
|
2240
|
-
gridFormat: String
|
|
2241
|
-
gridRank: Int
|
|
2242
|
-
gridValidator: String
|
|
2243
|
-
gridWidth: Int
|
|
2244
|
-
ignoreOnSave: Boolean
|
|
2245
|
-
menuDetail: String!
|
|
2246
|
-
name: String!
|
|
2247
|
-
nullable: Boolean
|
|
2248
|
-
rangeVal: String
|
|
2249
|
-
rank: Int
|
|
2250
|
-
refName: String
|
|
2251
|
-
refParams: String
|
|
2252
|
-
refRelated: String
|
|
2253
|
-
refType: String
|
|
2254
|
-
refUrl: String
|
|
2255
|
-
reverseSort: Boolean
|
|
2256
|
-
searchEditor: String
|
|
2257
|
-
searchInitVal: String
|
|
2258
|
-
searchName: String
|
|
2259
|
-
searchOper: String
|
|
2260
|
-
searchRank: Int
|
|
2261
|
-
sortRank: Int
|
|
2262
|
-
term: String
|
|
2263
|
-
uniqRank: Int
|
|
2264
|
-
virtualField: Boolean
|
|
2265
|
-
}
|
|
2266
|
-
|
|
2267
|
-
type MenuDetailList {
|
|
2268
|
-
items: [MenuDetail!]!
|
|
2269
|
-
total: Int!
|
|
2270
|
-
}
|
|
2271
|
-
|
|
2272
|
-
input MenuDetailPatch {
|
|
2273
|
-
association: String
|
|
2274
|
-
buttons: [String!]
|
|
2275
|
-
columns: [String!]
|
|
2276
|
-
customView: String
|
|
2277
|
-
dataProp: String
|
|
2278
|
-
entityId: String
|
|
2279
|
-
masterField: String
|
|
2280
|
-
menu: String
|
|
2281
|
-
name: String
|
|
2282
|
-
saveUrl: String
|
|
2283
|
-
searchUrl: String
|
|
2284
|
-
viewSection: String
|
|
2285
|
-
}
|
|
2286
|
-
|
|
2287
|
-
type MenuList {
|
|
2288
|
-
items: [Menu!]!
|
|
2289
|
-
total: Int!
|
|
2290
|
-
}
|
|
2291
|
-
|
|
2292
|
-
input MenuPatch {
|
|
2293
|
-
buttons: [ObjectRef!]
|
|
2294
|
-
category: String
|
|
2295
|
-
children: [ObjectRef!]
|
|
2296
|
-
columns: [ObjectRef!]
|
|
2297
|
-
cuFlag: String
|
|
2298
|
-
description: String
|
|
2299
|
-
detailFormId: String
|
|
2300
|
-
detailLayout: String
|
|
2301
|
-
fixedColumns: Int
|
|
2302
|
-
gridSaveUrl: String
|
|
2303
|
-
hiddenFlag: Boolean
|
|
2304
|
-
iconPath: String
|
|
2305
|
-
id: ID
|
|
2306
|
-
idField: String
|
|
2307
|
-
itemsProp: String
|
|
2308
|
-
menuType: String
|
|
2309
|
-
name: String
|
|
2310
|
-
pagination: Boolean
|
|
2311
|
-
parent: ObjectRef
|
|
2312
|
-
rank: Int
|
|
2313
|
-
resourceId: String
|
|
2314
|
-
resourceName: String
|
|
2315
|
-
resourceType: String
|
|
2316
|
-
resourceUrl: String
|
|
2317
|
-
role: ObjectRef
|
|
2318
|
-
routing: String
|
|
2319
|
-
routingType: String
|
|
2320
|
-
template: String
|
|
2321
|
-
titleField: String
|
|
2322
|
-
totalProp: String
|
|
2323
|
-
}
|
|
2324
|
-
|
|
2325
|
-
type Mutation {
|
|
2326
|
-
"""To abort a ActivityInstance"""
|
|
2327
|
-
abortActivityInstance(id: String!, reason: String): ActivityInstance!
|
|
2328
|
-
|
|
2329
|
-
"""To abort a ActivityThread"""
|
|
2330
|
-
abortActivityThread(id: String!, reason: String): ActivityThread!
|
|
2331
|
-
|
|
2332
|
-
"""To activate installable activity to Activity on given domain"""
|
|
2333
|
-
activateInstallableActivity(name: String!): Activity!
|
|
2334
|
-
|
|
2335
|
-
"""To activate user"""
|
|
2336
|
-
activateUser(userId: String!): Boolean!
|
|
2337
|
-
|
|
2338
|
-
"""To approve ActivityApproval"""
|
|
2339
|
-
approveActivityApproval(comment: String, id: String!): ActivityApproval
|
|
2340
|
-
|
|
2341
|
-
"""To assign a ActivityInstance"""
|
|
2342
|
-
assignActivityInstance(
|
|
2343
|
-
"""Email of assignee users"""
|
|
2344
|
-
assignees: [String!]
|
|
2345
|
-
dueAt: Timestamp
|
|
2346
|
-
id: String!
|
|
2347
|
-
reason: String
|
|
2348
|
-
): ActivityInstance!
|
|
2349
|
-
|
|
2350
|
-
"""To attach a contact on Employee"""
|
|
2351
|
-
attachContact(contactId: String!, id: String!): Employee!
|
|
2352
|
-
cancelInvitation(email: String!, reference: String!, type: String!): Boolean!
|
|
2353
|
-
|
|
2354
|
-
"""To connect a connection"""
|
|
2355
|
-
connectConnection(name: String!): Connection!
|
|
2356
|
-
|
|
2357
|
-
"""To copy multiple data-archives"""
|
|
2358
|
-
copyDataArchives(ids: [String!]!): [DataArchive!]!
|
|
2359
|
-
|
|
2360
|
-
"""To copy multiple data-sets"""
|
|
2361
|
-
copyDataSets(ids: [String!]!): [DataSet!]!
|
|
2362
|
-
|
|
2363
|
-
"""To import multiple scenarios"""
|
|
2364
|
-
copyScenarios(ids: [String!]!): [Scenario!]!
|
|
2365
|
-
|
|
2366
|
-
"""To create new Activity"""
|
|
2367
|
-
createActivity(activity: NewActivity!): Activity!
|
|
2368
|
-
|
|
2369
|
-
"""To create new ActivityTemplate"""
|
|
2370
|
-
createActivityTemplate(activityTemplate: NewActivityTemplate!): ActivityTemplate!
|
|
2371
|
-
|
|
2372
|
-
"""To create new appliance"""
|
|
2373
|
-
createAppliance(appliance: NewAppliance!): Appliance!
|
|
2374
|
-
|
|
2375
|
-
"""To create new application"""
|
|
2376
|
-
createApplication(application: NewApplication!): Application!
|
|
2377
|
-
|
|
2378
|
-
"""To create new ApprovalLine"""
|
|
2379
|
-
createApprovalLine(approvalLine: NewApprovalLine!): ApprovalLine!
|
|
2380
|
-
createAttachment(attachment: NewAttachment!): Attachment!
|
|
2381
|
-
createAttachments(attachments: [NewAttachment!]!): [Attachment!]!
|
|
2382
|
-
|
|
2383
|
-
"""To create new AttributeSet"""
|
|
2384
|
-
createAttributeSet(attribute: NewAttributeSet!): AttributeSet!
|
|
2385
|
-
|
|
2386
|
-
"""To create new Board"""
|
|
2387
|
-
createBoard(board: NewBoard!): Board!
|
|
2388
|
-
|
|
2389
|
-
"""To create new BoardTemplate"""
|
|
2390
|
-
createBoardTemplate(boardTemplate: NewBoardTemplate!): BoardTemplate!
|
|
2391
|
-
|
|
2392
|
-
"""To create new CommonCode"""
|
|
2393
|
-
createCommonCode(commonCode: NewCommonCode!): CommonCode!
|
|
2394
|
-
|
|
2395
|
-
"""To create new CommonCodeDetail"""
|
|
2396
|
-
createCommonCodeDetail(commonCodeDetail: NewCommonCodeDetail!): CommonCodeDetail!
|
|
2397
|
-
|
|
2398
|
-
"""To create new connection"""
|
|
2399
|
-
createConnection(connection: NewConnection!): Connection!
|
|
2400
|
-
|
|
2401
|
-
"""To create new Contact"""
|
|
2402
|
-
createContact(contact: NewContact!): Contact!
|
|
2403
|
-
|
|
2404
|
-
"""To create new DataArchive"""
|
|
2405
|
-
createDataArchive(dataArchive: NewDataArchive!): DataArchive!
|
|
2406
|
-
|
|
2407
|
-
"""To create new DataKeySet"""
|
|
2408
|
-
createDataKeySet(dataKeySet: NewDataKeySet!): DataKeySet!
|
|
2409
|
-
|
|
2410
|
-
"""To create new DataOoc"""
|
|
2411
|
-
createDataOoc(dataOoc: NewDataOoc!): DataOoc!
|
|
2412
|
-
|
|
2413
|
-
"""To create new data sample"""
|
|
2414
|
-
createDataSample(dataSample: NewDataSample!): DataSample!
|
|
2415
|
-
|
|
2416
|
-
"""To create new DataSensor"""
|
|
2417
|
-
createDataSensor(dataSensor: NewDataSensor!): DataSensor!
|
|
2418
|
-
|
|
2419
|
-
"""To create new DataSet"""
|
|
2420
|
-
createDataSet(dataSet: NewDataSet!): DataSet!
|
|
2421
|
-
|
|
2422
|
-
"""To create new Department"""
|
|
2423
|
-
createDepartment(department: NewDepartment!): Department!
|
|
2424
|
-
|
|
2425
|
-
"""To create domain (Only superuser is granted this privilege.)"""
|
|
2426
|
-
createDomain(domainInput: DomainPatch!): Domain!
|
|
2427
|
-
|
|
2428
|
-
"""To create new Employee"""
|
|
2429
|
-
createEmployee(employee: NewEmployee!): Employee!
|
|
2430
|
-
|
|
2431
|
-
"""To create new Entity"""
|
|
2432
|
-
createEntity(entity: NewEntity!): Entity!
|
|
2433
|
-
|
|
2434
|
-
"""To create new EntityColumn"""
|
|
2435
|
-
createEntityColumn(entityColumn: NewEntityColumn!): EntityColumn!
|
|
2436
|
-
|
|
2437
|
-
"""To create new Font"""
|
|
2438
|
-
createFont(font: NewFont!): Font!
|
|
2439
|
-
|
|
2440
|
-
"""To create new Group"""
|
|
2441
|
-
createGroup(group: NewGroup!): Group
|
|
2442
|
-
|
|
2443
|
-
"""To create new LiteMenu"""
|
|
2444
|
-
createLiteMenu(liteMenu: NewLiteMenu!): LiteMenu!
|
|
2445
|
-
|
|
2446
|
-
"""To create new Menu"""
|
|
2447
|
-
createMenu(menu: NewMenu!): Menu!
|
|
2448
|
-
|
|
2449
|
-
"""To create new MenuButton"""
|
|
2450
|
-
createMenuButton(menuButton: NewMenuButton!): MenuButton!
|
|
2451
|
-
|
|
2452
|
-
"""To create new MenuColumn"""
|
|
2453
|
-
createMenuColumn(menuColumn: NewMenuColumn!): MenuColumn!
|
|
2454
|
-
|
|
2455
|
-
"""To create new MenuDetail"""
|
|
2456
|
-
createMenuDetail(menuDetail: NewMenuDetail!): MenuDetail!
|
|
2457
|
-
|
|
2458
|
-
"""To create new MenuDetailButton"""
|
|
2459
|
-
createMenuDetailButton(menuDetailButton: NewMenuDetailButton!): MenuDetailButton!
|
|
2460
|
-
|
|
2461
|
-
"""To create new MenuDetailColumn"""
|
|
2462
|
-
createMenuDetailColumn(menuDetailColumn: NewMenuDetailColumn!): MenuDetailColumn!
|
|
2463
|
-
|
|
2464
|
-
"""To create new ApprovalLine for current user"""
|
|
2465
|
-
createMyApprovalLine(approvalLine: NewApprovalLine!): ApprovalLine!
|
|
2466
|
-
|
|
2467
|
-
"""To create new Notification"""
|
|
2468
|
-
createNotification(notification: NewNotification!): Notification!
|
|
2469
|
-
|
|
2470
|
-
"""To create new NotificationRule"""
|
|
2471
|
-
createNotificationRule(notificationRule: NewNotificationRule!): NotificationRule!
|
|
2472
|
-
|
|
2473
|
-
"""To create new Oauth2Client"""
|
|
2474
|
-
createOauth2Client(oauth2Client: NewOauth2Client!): Oauth2Client!
|
|
2475
|
-
|
|
2476
|
-
"""To create new PayloadLog"""
|
|
2477
|
-
createPayloadLog(payloadLog: NewPayloadLog!): PayloadLog!
|
|
2478
|
-
|
|
2479
|
-
"""To create new PlayGroup"""
|
|
2480
|
-
createPlayGroup(playGroup: NewPlayGroup!): PlayGroup!
|
|
2481
|
-
|
|
2482
|
-
"""To create new privilege"""
|
|
2483
|
-
createPrivilege(privilege: NewPrivilege!): Privilege!
|
|
2484
|
-
|
|
2485
|
-
"""To create new user"""
|
|
2486
|
-
createRole(role: NewRole!): User!
|
|
2487
|
-
|
|
2488
|
-
"""To create new scenario"""
|
|
2489
|
-
createScenario(scenario: NewScenario!): Scenario!
|
|
2490
|
-
|
|
2491
|
-
"""To create new Setting"""
|
|
2492
|
-
createSetting(setting: NewSetting!): Setting!
|
|
2493
|
-
|
|
2494
|
-
"""To create new Terminology"""
|
|
2495
|
-
createTerminology(terminology: NewTerminology!): Terminology!
|
|
2496
|
-
|
|
2497
|
-
"""To create new Theme"""
|
|
2498
|
-
createTheme(theme: NewTheme!): Theme!
|
|
2499
|
-
|
|
2500
|
-
"""To create new user"""
|
|
2501
|
-
createUser(user: NewUser!): User!
|
|
2502
|
-
|
|
2503
|
-
"""To deactivate installable activity to Activity on given domain"""
|
|
2504
|
-
deactivateInstallableActivity(name: String!): Activity!
|
|
2505
|
-
|
|
2506
|
-
"""To delegate ActivityApproval"""
|
|
2507
|
-
delegateActivityApproval(comment: String, id: String!, to: ObjectRef!): ActivityApproval
|
|
2508
|
-
|
|
2509
|
-
"""To delegate a ActivityThread"""
|
|
2510
|
-
delegateActivityThread(assignee: ObjectRef, dueAt: Timestamp, id: String!, reason: String): ActivityThread!
|
|
2511
|
-
|
|
2512
|
-
"""To delete multiple Activities"""
|
|
2513
|
-
deleteActivities(ids: [String!]!): Boolean!
|
|
2514
|
-
|
|
2515
|
-
"""To delete Activity"""
|
|
2516
|
-
deleteActivity(id: String!): Boolean!
|
|
2517
|
-
|
|
2518
|
-
"""To delete ActivityTemplate"""
|
|
2519
|
-
deleteActivityTemplate(id: String!): Boolean!
|
|
2520
|
-
|
|
2521
|
-
"""To delete multiple ActivityTemplates"""
|
|
2522
|
-
deleteActivityTemplates(ids: [String!]!): Boolean!
|
|
2523
|
-
deleteAppBinding(id: String!): Boolean!
|
|
2524
|
-
|
|
2525
|
-
"""To delete appliance"""
|
|
2526
|
-
deleteAppliance(id: String!): Boolean!
|
|
2527
|
-
|
|
2528
|
-
"""To delete application"""
|
|
2529
|
-
deleteApplication(id: String!): Boolean!
|
|
2530
|
-
|
|
2531
|
-
"""To delete ApprovalLine"""
|
|
2532
|
-
deleteApprovalLine(id: String!): Boolean!
|
|
2533
|
-
|
|
2534
|
-
"""To delete multiple ApprovalLines"""
|
|
2535
|
-
deleteApprovalLines(ids: [String!]!): Boolean!
|
|
2536
|
-
deleteAttachment(id: String!): Boolean!
|
|
2537
|
-
deleteAttachmentsByRef(refBys: [String!]!): Boolean!
|
|
2538
|
-
|
|
2539
|
-
"""To delete AttributeSet"""
|
|
2540
|
-
deleteAttributeSet(id: String!): Boolean!
|
|
2541
|
-
|
|
2542
|
-
"""To delete multiple AttributeSets"""
|
|
2543
|
-
deleteAttributeSets(ids: [String!]!): Boolean!
|
|
2544
|
-
|
|
2545
|
-
"""To delete Board"""
|
|
2546
|
-
deleteBoard(id: String!): Boolean!
|
|
2547
|
-
|
|
2548
|
-
"""To delete BoardTemplate"""
|
|
2549
|
-
deleteBoardTemplate(id: String!): Boolean!
|
|
2550
|
-
|
|
2551
|
-
"""To delete CommonCode"""
|
|
2552
|
-
deleteCommonCode(id: String!): Boolean!
|
|
2553
|
-
|
|
2554
|
-
"""To delete CommonCodeDetail"""
|
|
2555
|
-
deleteCommonCodeDetail(id: String!): Boolean!
|
|
2556
|
-
|
|
2557
|
-
"""To delete multiple CommonCodeDetails"""
|
|
2558
|
-
deleteCommonCodeDetails(ids: [String!]!): Boolean!
|
|
2559
|
-
|
|
2560
|
-
"""To delete multiple CommonCodes"""
|
|
2561
|
-
deleteCommonCodes(ids: [String!]!): Boolean!
|
|
2562
|
-
|
|
2563
|
-
"""To delete connection"""
|
|
2564
|
-
deleteConnection(name: String!): Boolean!
|
|
2565
|
-
|
|
2566
|
-
"""To delete multiple connections"""
|
|
2567
|
-
deleteConnections(names: [String!]!): Boolean!
|
|
2568
|
-
|
|
2569
|
-
"""To delete Contact"""
|
|
2570
|
-
deleteContact(id: String!): Boolean!
|
|
2571
|
-
|
|
2572
|
-
"""To delete multiple Contacts"""
|
|
2573
|
-
deleteContacts(ids: [String!]!): Boolean!
|
|
2574
|
-
|
|
2575
|
-
"""To delete DataArchive"""
|
|
2576
|
-
deleteDataArchive(id: String!): Boolean!
|
|
2577
|
-
|
|
2578
|
-
"""To delete multiple dataArchives"""
|
|
2579
|
-
deleteDataArchives(ids: [String!]!): Boolean!
|
|
2580
|
-
|
|
2581
|
-
"""To delete DataKeySet"""
|
|
2582
|
-
deleteDataKeySet(id: String!): Boolean!
|
|
2583
|
-
|
|
2584
|
-
"""To delete multiple DataKeySets"""
|
|
2585
|
-
deleteDataKeySets(ids: [String!]!): Boolean!
|
|
2586
|
-
|
|
2587
|
-
"""To delete DataSensor"""
|
|
2588
|
-
deleteDataSensor(id: String!): Boolean!
|
|
2589
|
-
|
|
2590
|
-
"""To delete multiple dataSensors"""
|
|
2591
|
-
deleteDataSensors(ids: [String!]!): Boolean!
|
|
2592
|
-
|
|
2593
|
-
"""To delete DataSet"""
|
|
2594
|
-
deleteDataSet(id: String!): Boolean!
|
|
2595
|
-
|
|
2596
|
-
"""To delete multiple dataSets"""
|
|
2597
|
-
deleteDataSets(ids: [String!]!): Boolean!
|
|
2598
|
-
|
|
2599
|
-
"""To delete Department"""
|
|
2600
|
-
deleteDepartment(id: String!): Boolean!
|
|
2601
|
-
|
|
2602
|
-
"""To delete multiple Departments"""
|
|
2603
|
-
deleteDepartments(ids: [String!]!): Boolean!
|
|
2604
|
-
|
|
2605
|
-
"""To delete domain (Only superuser is granted this privilege.)"""
|
|
2606
|
-
deleteDomain(name: String!): Domain!
|
|
2607
|
-
|
|
2608
|
-
"""To delete domain user"""
|
|
2609
|
-
deleteDomainUser(email: String!): Boolean!
|
|
2610
|
-
|
|
2611
|
-
"""To delete multiple domains (Only superuser is granted this privilege.)"""
|
|
2612
|
-
deleteDomains(names: [String!]!): Boolean!
|
|
2613
|
-
|
|
2614
|
-
"""To delete Activity Instance of draft state"""
|
|
2615
|
-
deleteDraftActivityInstance(id: String!): Boolean!
|
|
2616
|
-
|
|
2617
|
-
"""To delete multiple Activity Instances of draft state"""
|
|
2618
|
-
deleteDraftActivityInstances(ids: [String!]!): Boolean!
|
|
2619
|
-
|
|
2620
|
-
"""To delete Employee"""
|
|
2621
|
-
deleteEmployee(id: String!): Boolean!
|
|
2622
|
-
|
|
2623
|
-
"""To delete multiple Employees"""
|
|
2624
|
-
deleteEmployees(ids: [String!]!): Boolean!
|
|
2625
|
-
|
|
2626
|
-
"""To delete multiple Entities"""
|
|
2627
|
-
deleteEntities(ids: [String!]!): Boolean!
|
|
2628
|
-
|
|
2629
|
-
"""To delete Entity"""
|
|
2630
|
-
deleteEntity(id: String!): Boolean!
|
|
2631
|
-
|
|
2632
|
-
"""To delete EntityColumn"""
|
|
2633
|
-
deleteEntityColumn(id: String!): Boolean!
|
|
2634
|
-
|
|
2635
|
-
"""To delete multiple EntityColumns"""
|
|
2636
|
-
deleteEntityColumns(ids: [String!]!): Boolean!
|
|
2637
|
-
|
|
2638
|
-
"""To delete Font"""
|
|
2639
|
-
deleteFont(id: String!): Boolean!
|
|
2640
|
-
|
|
2641
|
-
"""To delete Group"""
|
|
2642
|
-
deleteGroup(id: String!): Boolean!
|
|
2643
|
-
|
|
2644
|
-
"""To delete LiteMenu"""
|
|
2645
|
-
deleteLiteMenu(id: String!): Boolean!
|
|
2646
|
-
|
|
2647
|
-
"""To delete Menu"""
|
|
2648
|
-
deleteMenu(id: String!): Boolean!
|
|
2649
|
-
|
|
2650
|
-
"""To delete MenuButton"""
|
|
2651
|
-
deleteMenuButton(id: String!): Boolean!
|
|
2652
|
-
|
|
2653
|
-
"""To delete multiple MenuButtons"""
|
|
2654
|
-
deleteMenuButtons(ids: [String!]!): Boolean!
|
|
2655
|
-
|
|
2656
|
-
"""To delete MenuColumn"""
|
|
2657
|
-
deleteMenuColumn(id: String!): Boolean!
|
|
2658
|
-
|
|
2659
|
-
"""To delete multiple MenuColumns"""
|
|
2660
|
-
deleteMenuColumns(ids: [String!]!): Boolean!
|
|
2661
|
-
|
|
2662
|
-
"""To delete MenuDetail"""
|
|
2663
|
-
deleteMenuDetail(id: String!): Boolean!
|
|
2664
|
-
|
|
2665
|
-
"""To delete MenuDetailButton"""
|
|
2666
|
-
deleteMenuDetailButton(id: String!): Boolean!
|
|
2667
|
-
|
|
2668
|
-
"""To delete multiple MenuDetailButtons"""
|
|
2669
|
-
deleteMenuDetailButtons(ids: [String!]!): Boolean!
|
|
2670
|
-
|
|
2671
|
-
"""To delete MenuDetailColumn"""
|
|
2672
|
-
deleteMenuDetailColumn(id: String!): Boolean!
|
|
2673
|
-
|
|
2674
|
-
"""To delete multiple MenuDetailColumns"""
|
|
2675
|
-
deleteMenuDetailColumns(ids: [String!]!): Boolean!
|
|
2676
|
-
|
|
2677
|
-
"""To delete multiple MenuDetails"""
|
|
2678
|
-
deleteMenuDetails(ids: [String!]!): Boolean!
|
|
2679
|
-
|
|
2680
|
-
"""To delete multiple Menus"""
|
|
2681
|
-
deleteMenus(ids: [String!]!): Boolean!
|
|
2682
|
-
|
|
2683
|
-
"""To delete ApprovalLine for current user"""
|
|
2684
|
-
deleteMyApprovalLine(id: String!): Boolean!
|
|
2685
|
-
|
|
2686
|
-
"""To delete multiple ApprovalLines for current user"""
|
|
2687
|
-
deleteMyApprovalLines(ids: [String!]!): Boolean!
|
|
2688
|
-
|
|
2689
|
-
"""To delete Notification"""
|
|
2690
|
-
deleteNotification(id: String!): Boolean!
|
|
2691
|
-
|
|
2692
|
-
"""To delete NotificationRule"""
|
|
2693
|
-
deleteNotificationRule(id: String!): Boolean!
|
|
2694
|
-
|
|
2695
|
-
"""To delete multiple NotificationRules"""
|
|
2696
|
-
deleteNotificationRules(ids: [String!]!): Boolean!
|
|
2697
|
-
|
|
2698
|
-
"""To delete multiple Notificationes"""
|
|
2699
|
-
deleteNotificationes(ids: [String!]!): Boolean!
|
|
2700
|
-
|
|
2701
|
-
"""To delete Oauth2Client"""
|
|
2702
|
-
deleteOauth2Client(id: String!): Boolean!
|
|
2703
|
-
|
|
2704
|
-
"""To delete multiple Oauth2Clients"""
|
|
2705
|
-
deleteOauth2Clients(ids: [String!]!): Boolean!
|
|
2706
|
-
|
|
2707
|
-
"""To delete multiple partnerSettings"""
|
|
2708
|
-
deletePartnerSettings(ids: [String!]!): Boolean!
|
|
2709
|
-
|
|
2710
|
-
"""To delete PayloadLog"""
|
|
2711
|
-
deletePayloadLog(id: String!): Boolean!
|
|
2712
|
-
|
|
2713
|
-
"""To delete multiple payloadLogs"""
|
|
2714
|
-
deletePayloadLogs(ids: [String!]!): Boolean!
|
|
2715
|
-
|
|
2716
|
-
"""To delete PlayGroup"""
|
|
2717
|
-
deletePlayGroup(id: String!): Boolean!
|
|
2718
|
-
|
|
2719
|
-
"""To delete privilege"""
|
|
2720
|
-
deletePrivilege(category: String!, name: String!): Boolean!
|
|
2721
|
-
|
|
2722
|
-
"""To delete role"""
|
|
2723
|
-
deleteRole(id: String!): Boolean!
|
|
2724
|
-
|
|
2725
|
-
"""To delete multiple roles"""
|
|
2726
|
-
deleteRoles(ids: [String!]!): Boolean!
|
|
2727
|
-
|
|
2728
|
-
"""To delete scenario"""
|
|
2729
|
-
deleteScenario(name: String!): Boolean!
|
|
2730
|
-
|
|
2731
|
-
"""To delete multiple scenarios"""
|
|
2732
|
-
deleteScenarios(ids: [String!]!): Boolean!
|
|
2733
|
-
|
|
2734
|
-
"""To delete Setting"""
|
|
2735
|
-
deleteSetting(name: String!): Boolean!
|
|
2736
|
-
|
|
2737
|
-
"""To delete multiple settings"""
|
|
2738
|
-
deleteSettings(names: [String!]!): Boolean!
|
|
2739
|
-
|
|
2740
|
-
"""To delete multiple steps"""
|
|
2741
|
-
deleteSteps(ids: [String!]!): Boolean!
|
|
2742
|
-
|
|
2743
|
-
"""To delete multiple Terminologies"""
|
|
2744
|
-
deleteTerminologies(ids: [String!]!): Boolean!
|
|
2745
|
-
|
|
2746
|
-
"""To delete Terminology"""
|
|
2747
|
-
deleteTerminology(id: String!): Boolean!
|
|
2748
|
-
|
|
2749
|
-
"""To delete Theme"""
|
|
2750
|
-
deleteTheme(id: String!): Boolean!
|
|
2751
|
-
|
|
2752
|
-
"""To delete multiple Themes"""
|
|
2753
|
-
deleteThemes(ids: [String!]!): Boolean!
|
|
2754
|
-
|
|
2755
|
-
"""To delete a user"""
|
|
2756
|
-
deleteUser(email: String!): Boolean!
|
|
2757
|
-
|
|
2758
|
-
"""To delete some users"""
|
|
2759
|
-
deleteUsers(emails: [String!]!): Boolean!
|
|
2760
|
-
|
|
2761
|
-
"""To delete multiple workShifts"""
|
|
2762
|
-
deleteWorkShifts(ids: [String!]!): Boolean!
|
|
2763
|
-
|
|
2764
|
-
"""To detach a contact from Employee"""
|
|
2765
|
-
detachContact(id: String!): Employee!
|
|
2766
|
-
|
|
2767
|
-
"""To disconnect a connection"""
|
|
2768
|
-
disconnectConnection(name: String!): Connection!
|
|
2769
|
-
domainRegister(domainInput: DomainGeneratorInput!): Domain!
|
|
2770
|
-
domainUserRoleRegister(newDomainInfo: DomainUserRoleInput!): Domain!
|
|
2771
|
-
|
|
2772
|
-
"""To draft standard ActivityInstance"""
|
|
2773
|
-
draftActivityInstance(activityInstance: ActivityInstanceDraft!): ActivityInstance!
|
|
2774
|
-
|
|
2775
|
-
"""To end a ActivityInstance"""
|
|
2776
|
-
endActivityInstance(id: String!, output: Object, reason: String): ActivityInstance!
|
|
2777
|
-
|
|
2778
|
-
"""To end a ActivityThread"""
|
|
2779
|
-
endActivityThread(id: String!, output: Object, reason: String): ActivityThread!
|
|
2780
|
-
generateApplianceSecret(id: String!): Appliance!
|
|
2781
|
-
generateApplicationSecret(id: String!): Application!
|
|
2782
|
-
|
|
2783
|
-
"""To generate new Data Summaries"""
|
|
2784
|
-
generateDataSummaries(dataSetId: String!, date: String!, period: String!): Boolean!
|
|
2785
|
-
|
|
2786
|
-
"""To generate new Data Summaries"""
|
|
2787
|
-
generateLatestDataSummaries(dataSetId: String!): Boolean!
|
|
2788
|
-
|
|
2789
|
-
"""To create new DataArchive"""
|
|
2790
|
-
generatePresignedUrl(patch: DataArchivePatch!): DataArchive!
|
|
2791
|
-
generateUploadURL(type: String!): UploadURL!
|
|
2792
|
-
|
|
2793
|
-
"""To get oauth2 auth URL"""
|
|
2794
|
-
getOauth2AuthUrl(id: String!): String!
|
|
2795
|
-
grantRoles(customerId: String!, roles: [RolePatch!]!): Boolean!
|
|
2796
|
-
|
|
2797
|
-
"""To import multiple Activities"""
|
|
2798
|
-
importActivities(activities: [ActivityPatch!]!): Boolean!
|
|
2799
|
-
|
|
2800
|
-
"""To import multiple ActivityTemplates"""
|
|
2801
|
-
importActivityTemplates(activityTemplates: [ActivityTemplatePatch!]!): Boolean!
|
|
2802
|
-
|
|
2803
|
-
"""To import multiple ApprovalLines"""
|
|
2804
|
-
importApprovalLines(approvalLines: [ApprovalLinePatch!]!): Boolean!
|
|
2805
|
-
|
|
2806
|
-
"""To import multiple AttributeSets"""
|
|
2807
|
-
importAttributeSets(attributes: [AttributeSetPatch!]!): Boolean!
|
|
2808
|
-
|
|
2809
|
-
"""To import multiple CommonCodeDetails"""
|
|
2810
|
-
importCommonCodeDetails(commonCodeDetails: [CommonCodeDetailPatch!]!): Boolean!
|
|
2811
|
-
|
|
2812
|
-
"""To import multiple CommonCodes"""
|
|
2813
|
-
importCommonCodes(commonCodes: [CommonCodePatch!]!): Boolean!
|
|
2814
|
-
|
|
2815
|
-
"""To import multiple Contacts"""
|
|
2816
|
-
importContacts(contacts: [ContactPatch!]!): Boolean!
|
|
2817
|
-
|
|
2818
|
-
"""To import multiple data-archives"""
|
|
2819
|
-
importDataArchives(dataArchives: [DataArchivePatch!]!): Boolean!
|
|
2820
|
-
|
|
2821
|
-
"""To import multiple DataKeySets"""
|
|
2822
|
-
importDataKeySets(dataKeySets: [DataKeySetPatch!]!): Boolean!
|
|
2823
|
-
|
|
2824
|
-
"""To import multiple data-sets"""
|
|
2825
|
-
importDataSets(dataSets: [DataSetPatch!]!): Boolean!
|
|
2826
|
-
|
|
2827
|
-
"""To import multiple Departments"""
|
|
2828
|
-
importDepartments(departments: [DepartmentPatch!]!): Boolean!
|
|
2829
|
-
|
|
2830
|
-
"""To import multiple Employees"""
|
|
2831
|
-
importEmployees(employees: [EmployeePatch!]!): Boolean!
|
|
2832
|
-
|
|
2833
|
-
"""To import multiple MenuButtons"""
|
|
2834
|
-
importMenuButtons(menuButtons: [MenuButtonPatch!]!): Boolean!
|
|
2835
|
-
|
|
2836
|
-
"""To import multiple MenuColumns"""
|
|
2837
|
-
importMenuColumns(menuColumns: [MenuColumnPatch!]!): Boolean!
|
|
2838
|
-
|
|
2839
|
-
"""To import multiple MenuDetailButtons"""
|
|
2840
|
-
importMenuDetailButtons(menuDetailButtons: [MenuDetailButtonPatch!]!): Boolean!
|
|
2841
|
-
|
|
2842
|
-
"""To import multiple MenuDetailColumns"""
|
|
2843
|
-
importMenuDetailColumns(menuDetailColumns: [MenuDetailColumnPatch!]!): Boolean!
|
|
2844
|
-
|
|
2845
|
-
"""To import multiple MenuDetails"""
|
|
2846
|
-
importMenuDetails(menuDetails: [MenuDetailPatch!]!): Boolean!
|
|
2847
|
-
|
|
2848
|
-
"""To import multiple Menus"""
|
|
2849
|
-
importMenus(menus: [MenuPatch!]!): Boolean!
|
|
2850
|
-
|
|
2851
|
-
"""To import multiple NotificationRules"""
|
|
2852
|
-
importNotificationRules(notificationRules: [NotificationRulePatch!]!): Boolean!
|
|
2853
|
-
|
|
2854
|
-
"""To import multiple Oauth2Clients"""
|
|
2855
|
-
importOauth2Clients(oauth2Clients: [Oauth2ClientPatch!]!): Boolean!
|
|
2856
|
-
|
|
2857
|
-
"""To import multiple scenarios"""
|
|
2858
|
-
importScenarios(scenarios: [ScenarioPatch!]!): Boolean!
|
|
2859
|
-
|
|
2860
|
-
"""To import multiple Terminologies"""
|
|
2861
|
-
importTerminologies(terminologies: [TerminologyPatch!]!): Boolean!
|
|
2862
|
-
|
|
2863
|
-
"""To import multiple Themes"""
|
|
2864
|
-
importThemes(themes: [ThemePatch!]!): Boolean!
|
|
2865
|
-
|
|
2866
|
-
"""To inactivate user"""
|
|
2867
|
-
inactivateUser(userId: String!): Boolean!
|
|
2868
|
-
inviteCustomer(customerDomainName: String!): Boolean!
|
|
2869
|
-
|
|
2870
|
-
"""To invite new user"""
|
|
2871
|
-
inviteUser(email: String!): Boolean!
|
|
2872
|
-
|
|
2873
|
-
"""To issue standard ActivityInstance"""
|
|
2874
|
-
issueActivityInstance(activityInstance: ActivityInstanceIssue!): ActivityInstance!
|
|
2875
|
-
|
|
2876
|
-
"""To make the board to join the group"""
|
|
2877
|
-
joinGroup(boardIds: [String!]!, id: String!): Group!
|
|
2878
|
-
|
|
2879
|
-
"""To make the board to join the play group"""
|
|
2880
|
-
joinPlayGroup(boardIds: [String!]!, id: String!): PlayGroup!
|
|
2881
|
-
|
|
2882
|
-
"""To make the board to leave from the play group"""
|
|
2883
|
-
leavePlayGroup(boardIds: [String!]!, id: String!): PlayGroup!
|
|
2884
|
-
multipleUpload(files: [Upload!]!): [Attachment!]!
|
|
2885
|
-
|
|
2886
|
-
"""
|
|
2887
|
-
To pick an activity ActivityInstance voluntarily. [cautions] This resolver will return a assigned ActivityThread.
|
|
2888
|
-
"""
|
|
2889
|
-
pickActivityInstance(id: String!): ActivityThread
|
|
2890
|
-
|
|
2891
|
-
"""To refresh oauth2 access token"""
|
|
2892
|
-
refreshOauth2AccessToken(id: String!): Oauth2Client!
|
|
2893
|
-
|
|
2894
|
-
"""To reject ActivityApproval"""
|
|
2895
|
-
rejectActivityApproval(comment: String, id: String!): ActivityApproval
|
|
2896
|
-
renewApplicationAccessToken(id: String!, scope: String!): AccessToken!
|
|
2897
|
-
|
|
2898
|
-
"""To reset password to default"""
|
|
2899
|
-
resetPasswordToDefault(userId: String!): Boolean!
|
|
2900
|
-
|
|
2901
|
-
"""To restart ActivityThread"""
|
|
2902
|
-
restartActivityThread(id: String!, output: Object, reason: String): ActivityThread
|
|
2903
|
-
|
|
2904
|
-
"""
|
|
2905
|
-
To run new scenario instance and will return the result after the scenario stop.
|
|
2906
|
-
"""
|
|
2907
|
-
runScenario(instanceName: String, scenarioName: String!, variables: Object): ScenarioInstance!
|
|
2908
|
-
|
|
2909
|
-
"""To approve ActivityApproval"""
|
|
2910
|
-
saveActivityApproval(comment: String, id: String!): ActivityApproval
|
|
2911
|
-
|
|
2912
|
-
"""To save ActivityThread information"""
|
|
2913
|
-
saveActivityThread(id: String!, save: ActivityThreadSave!): ActivityThread!
|
|
2914
|
-
sendInvitation(email: String!, reference: String!, type: String!): Invitation!
|
|
2915
|
-
singleUpload(file: Upload!): Attachment!
|
|
2916
|
-
|
|
2917
|
-
"""To start posting activity based on the schedule of the given activity"""
|
|
2918
|
-
startActivitySchedule(activityId: String!): Activity!
|
|
2919
|
-
|
|
2920
|
-
"""To start ActivityThread"""
|
|
2921
|
-
startActivityThread(id: String!, output: Object, reason: String): ActivityThread
|
|
2922
|
-
|
|
2923
|
-
"""To start data collection schedule for the given dataset"""
|
|
2924
|
-
startDataCollectionSchedule(dataSetId: String!): DataSet!
|
|
2925
|
-
|
|
2926
|
-
"""To start new scenario instance"""
|
|
2927
|
-
startScenario(instanceName: String, scenarioName: String!, variables: Object): ScenarioInstance!
|
|
2928
|
-
|
|
2929
|
-
"""To start posting scenario based on the schedule of the given scenario"""
|
|
2930
|
-
startScenarioSchedule(scenarioId: String!): Scenario!
|
|
2931
|
-
|
|
2932
|
-
"""To stop posting activity based on the schedule of the given activity"""
|
|
2933
|
-
stopActivitySchedule(activityId: String!): Activity
|
|
2934
|
-
|
|
2935
|
-
"""To stop data collection schedule for the given dataset"""
|
|
2936
|
-
stopDataCollectionSchedule(dataSetId: String!): DataSet
|
|
2937
|
-
|
|
2938
|
-
"""To start new scenario instance"""
|
|
2939
|
-
stopScenario(instanceName: String): ScenarioInstance
|
|
2940
|
-
|
|
2941
|
-
"""To stop posting scenario based on the schedule of the given scenario"""
|
|
2942
|
-
stopScenarioSchedule(scenarioId: String!): Scenario
|
|
2943
|
-
|
|
2944
|
-
"""To submit a ActivityThread"""
|
|
2945
|
-
submitActivityThread(id: String!, output: Object, reason: String): ActivityThread!
|
|
2946
|
-
|
|
2947
|
-
"""
|
|
2948
|
-
To synchronize privilege master from graphql directives. Only superuser is permitted.
|
|
2949
|
-
"""
|
|
2950
|
-
synchronizePrivilegeMaster(privilege: NewPrivilege!): Boolean!
|
|
2951
|
-
terminateContract(partnerName: String!): Boolean!
|
|
2952
|
-
|
|
2953
|
-
"""To transfer owner of domain"""
|
|
2954
|
-
transferOwner(email: String!): Boolean!
|
|
2955
|
-
|
|
2956
|
-
"""To modify Activity information"""
|
|
2957
|
-
updateActivity(id: String!, patch: ActivityPatch!): Activity!
|
|
2958
|
-
|
|
2959
|
-
"""To modify ActivityTemplate information"""
|
|
2960
|
-
updateActivityTemplate(id: String!, patch: ActivityTemplatePatch!): ActivityTemplate!
|
|
2961
|
-
|
|
2962
|
-
"""To save ActivityThread Output Data"""
|
|
2963
|
-
updateActivityThreadOutput(id: String!, output: Object!): ActivityThread!
|
|
2964
|
-
updateAppliance(id: String!, patch: AppliancePatch!): Appliance!
|
|
2965
|
-
updateApplication(id: String!, patch: ApplicationPatch!): Application!
|
|
2966
|
-
|
|
2967
|
-
"""To modify ApprovalLine information"""
|
|
2968
|
-
updateApprovalLine(id: String!, patch: ApprovalLinePatch!): ApprovalLine!
|
|
2969
|
-
updateAttachment(id: String!, patch: AttachmentPatch!): Attachment!
|
|
2970
|
-
|
|
2971
|
-
"""To modify AttributeSet information"""
|
|
2972
|
-
updateAttributeSet(id: String!, patch: AttributeSetPatch!): AttributeSet!
|
|
2973
|
-
|
|
2974
|
-
"""To modify Board information"""
|
|
2975
|
-
updateBoard(id: String!, patch: BoardPatch!): Board!
|
|
2976
|
-
|
|
2977
|
-
"""To modify BoardTemplate information"""
|
|
2978
|
-
updateBoardTemplate(id: String!, patch: BoardTemplatePatch!): BoardTemplate!
|
|
2979
|
-
|
|
2980
|
-
"""To modify CommonCode information"""
|
|
2981
|
-
updateCommonCode(name: String!, patch: CommonCodePatch!): CommonCode!
|
|
2982
|
-
|
|
2983
|
-
"""To modify CommonCodeDetail information"""
|
|
2984
|
-
updateCommonCodeDetail(id: String!, patch: CommonCodeDetailPatch!): CommonCodeDetail!
|
|
2985
|
-
|
|
2986
|
-
"""To modify connection information"""
|
|
2987
|
-
updateConnection(name: String!, patch: ConnectionPatch!): Connection!
|
|
2988
|
-
|
|
2989
|
-
"""To modify Contact information"""
|
|
2990
|
-
updateContact(id: String!, patch: ContactPatch!): Contact!
|
|
2991
|
-
|
|
2992
|
-
"""To modify DataArchive information"""
|
|
2993
|
-
updateDataArchive(id: String!, patch: DataArchivePatch!): DataArchive!
|
|
2994
|
-
|
|
2995
|
-
"""To modify DataKeySet information"""
|
|
2996
|
-
updateDataKeySet(id: String!, patch: DataKeySetPatch!): DataKeySet!
|
|
2997
|
-
|
|
2998
|
-
"""To modify DataOoc information"""
|
|
2999
|
-
updateDataOoc(id: String!, patch: DataOocPatch!): DataOoc!
|
|
3000
|
-
|
|
3001
|
-
"""To modify DataSensor information"""
|
|
3002
|
-
updateDataSensor(id: String!, patch: DataSensorPatch!): DataSensor!
|
|
3003
|
-
|
|
3004
|
-
"""To modify DataSet information"""
|
|
3005
|
-
updateDataSet(id: String!, patch: DataSetPatch!): DataSet!
|
|
3006
|
-
|
|
3007
|
-
"""To modify Department information"""
|
|
3008
|
-
updateDepartment(id: String!, patch: DepartmentPatch!): Department!
|
|
3009
|
-
|
|
3010
|
-
"""To update domain (Only superuser is granted this privilege.)"""
|
|
3011
|
-
updateDomain(name: String!, patch: DomainPatch!): Domain!
|
|
3012
|
-
|
|
3013
|
-
"""To update multiple domains (Only superuser is granted this privilege.)"""
|
|
3014
|
-
updateDomains(patches: [DomainPatch!]!): Boolean!
|
|
3015
|
-
|
|
3016
|
-
"""To modify Employee information"""
|
|
3017
|
-
updateEmployee(id: String!, patch: EmployeePatch!): Employee!
|
|
3018
|
-
|
|
3019
|
-
"""To modify Entity' information"""
|
|
3020
|
-
updateEntity(id: String!, patch: EntityPatch!): Entity!
|
|
3021
|
-
|
|
3022
|
-
"""To modify EntityColumn information"""
|
|
3023
|
-
updateEntityColumn(id: String!, patch: EntityColumnPatch!): EntityColumn!
|
|
3024
|
-
|
|
3025
|
-
"""To modify Font information"""
|
|
3026
|
-
updateFont(id: String!, patch: FontPatch!): Font!
|
|
3027
|
-
|
|
3028
|
-
"""To modify Group information"""
|
|
3029
|
-
updateGroup(id: String!, patch: GroupPatch!): Group!
|
|
3030
|
-
|
|
3031
|
-
"""To modify LiteMenu information"""
|
|
3032
|
-
updateLiteMenu(id: String!, patch: LiteMenuPatch!): LiteMenu!
|
|
3033
|
-
|
|
3034
|
-
"""To modify Menu information"""
|
|
3035
|
-
updateMenu(id: String!, patch: MenuPatch!): Menu!
|
|
3036
|
-
|
|
3037
|
-
"""To modify MenuButton information"""
|
|
3038
|
-
updateMenuButton(id: String!, patch: MenuButtonPatch!): MenuButton!
|
|
3039
|
-
|
|
3040
|
-
"""To modify MenuColumn information"""
|
|
3041
|
-
updateMenuColumn(id: String!, patch: MenuColumnPatch!): MenuColumn!
|
|
3042
|
-
|
|
3043
|
-
"""To modify MenuDetail information"""
|
|
3044
|
-
updateMenuDetail(id: String!, patch: MenuDetailPatch!): MenuDetail!
|
|
3045
|
-
|
|
3046
|
-
"""To modify MenuDetailButton information"""
|
|
3047
|
-
updateMenuDetailButton(id: String!, patch: MenuDetailButtonPatch!): MenuDetailButton!
|
|
3048
|
-
|
|
3049
|
-
"""To modify MenuDetailColumn information"""
|
|
3050
|
-
updateMenuDetailColumn(id: String!, patch: MenuDetailColumnPatch!): MenuDetailColumn!
|
|
3051
|
-
|
|
3052
|
-
"""To modify multiple Activities' information"""
|
|
3053
|
-
updateMultipleActivity(patches: [ActivityPatch!]!): [Activity!]!
|
|
3054
|
-
|
|
3055
|
-
"""To modify multiple ActivityTemplates' information"""
|
|
3056
|
-
updateMultipleActivityTemplate(patches: [ActivityTemplatePatch!]!): [ActivityTemplate!]!
|
|
3057
|
-
|
|
3058
|
-
"""To modify multiple ApprovalLines' information"""
|
|
3059
|
-
updateMultipleApprovalLine(patches: [ApprovalLinePatch!]!): [ApprovalLine!]!
|
|
3060
|
-
|
|
3061
|
-
"""To modify multiple AttributeSets' information"""
|
|
3062
|
-
updateMultipleAttributeSet(patches: [AttributeSetPatch!]!): [AttributeSet!]!
|
|
3063
|
-
|
|
3064
|
-
"""To modify multiple CommonCodes' information"""
|
|
3065
|
-
updateMultipleCommonCode(patches: [CommonCodePatch!]!): [CommonCode!]!
|
|
3066
|
-
|
|
3067
|
-
"""To modify multiple CommonCodeDetails' information"""
|
|
3068
|
-
updateMultipleCommonCodeDetail(patches: [CommonCodeDetailPatch!]!): [CommonCodeDetail!]!
|
|
3069
|
-
|
|
3070
|
-
"""To modify multiple connections' information"""
|
|
3071
|
-
updateMultipleConnection(patches: [ConnectionPatch!]!): [Connection!]!
|
|
3072
|
-
|
|
3073
|
-
"""To modify multiple Contacts' information"""
|
|
3074
|
-
updateMultipleContact(patches: [ContactPatch!]!): [Contact!]!
|
|
3075
|
-
|
|
3076
|
-
"""To modify multiple DataArchives' information"""
|
|
3077
|
-
updateMultipleDataArchive(patches: [DataArchivePatch!]!): [DataArchive!]!
|
|
3078
|
-
|
|
3079
|
-
"""To modify multiple DataKeySets' information"""
|
|
3080
|
-
updateMultipleDataKeySet(patches: [DataKeySetPatch!]!): [DataKeySet!]!
|
|
3081
|
-
|
|
3082
|
-
"""To modify multiple DataSensors' information"""
|
|
3083
|
-
updateMultipleDataSensor(patches: [DataSensorPatch!]!): [DataSensor!]!
|
|
3084
|
-
|
|
3085
|
-
"""To modify multiple DataSets' information"""
|
|
3086
|
-
updateMultipleDataSet(patches: [DataSetPatch!]!): [DataSet!]!
|
|
3087
|
-
|
|
3088
|
-
"""To modify multiple Departments' information"""
|
|
3089
|
-
updateMultipleDepartment(patches: [DepartmentPatch!]!): [Department!]!
|
|
3090
|
-
|
|
3091
|
-
"""To modify multiple Employees' information"""
|
|
3092
|
-
updateMultipleEmployee(patches: [EmployeePatch!]!): [Employee!]!
|
|
3093
|
-
|
|
3094
|
-
"""To modify multiple Entitys' information"""
|
|
3095
|
-
updateMultipleEntity(patches: [EntityPatch!]!): [Entity!]!
|
|
3096
|
-
|
|
3097
|
-
"""To modify multiple Entitys' information"""
|
|
3098
|
-
updateMultipleEntityColumn(patches: [EntityColumnPatch!]!): [EntityColumn!]!
|
|
3099
|
-
|
|
3100
|
-
"""To modify multiple Menus' information"""
|
|
3101
|
-
updateMultipleMenu(patches: [MenuPatch!]!): [Menu!]!
|
|
3102
|
-
|
|
3103
|
-
"""To modify multiple ApprovalLines' information for current user"""
|
|
3104
|
-
updateMultipleMyApprovalLine(patches: [ApprovalLinePatch!]!): [ApprovalLine!]!
|
|
3105
|
-
|
|
3106
|
-
"""To modify multiple Notificationes' information"""
|
|
3107
|
-
updateMultipleNotification(patches: [NotificationPatch!]!): [Notification!]!
|
|
3108
|
-
|
|
3109
|
-
"""To modify multiple NotificationRules' information"""
|
|
3110
|
-
updateMultipleNotificationRule(patches: [NotificationRulePatch!]!): [NotificationRule!]!
|
|
3111
|
-
|
|
3112
|
-
"""To modify multiple PartnerSettings' information"""
|
|
3113
|
-
updateMultiplePartnerSetting(patches: [PartnerSettingPatch!]!): [PartnerSetting!]!
|
|
3114
|
-
|
|
3115
|
-
"""To modify multiple PayloadLogs' information"""
|
|
3116
|
-
updateMultiplePayloadLog(patches: [PayloadLogPatch!]!): [PayloadLog!]!
|
|
3117
|
-
|
|
3118
|
-
"""To modify multiple scenarios' information"""
|
|
3119
|
-
updateMultipleScenario(patches: [ScenarioPatch!]!): [Scenario!]!
|
|
3120
|
-
|
|
3121
|
-
"""To modify multiple Settings' information"""
|
|
3122
|
-
updateMultipleSetting(patches: [SettingPatch!]!): [Setting!]!
|
|
3123
|
-
|
|
3124
|
-
"""To modify multiple steps' in a scenario"""
|
|
3125
|
-
updateMultipleStep(patches: [StepPatch!]!, scenarioId: String!): [Step!]!
|
|
3126
|
-
|
|
3127
|
-
"""To modify multiple Terminologies' information"""
|
|
3128
|
-
updateMultipleTerminologies(patches: [TerminologyPatch!]!): [Terminology!]!
|
|
3129
|
-
|
|
3130
|
-
"""To modify multiple Themes' information"""
|
|
3131
|
-
updateMultipleTheme(patches: [ThemePatch!]!): [Theme!]!
|
|
3132
|
-
|
|
3133
|
-
"""To modify multiple users information"""
|
|
3134
|
-
updateMultipleUser(patches: [UserPatch!]!): [User!]!
|
|
3135
|
-
|
|
3136
|
-
"""To modify multiple WorkShifts' information"""
|
|
3137
|
-
updateMultipleWorkShift(patches: [WorkShiftPatch!]!): [WorkShift!]!
|
|
3138
|
-
|
|
3139
|
-
"""To modify ApprovalLine information for current user"""
|
|
3140
|
-
updateMyApprovalLine(id: String!, patch: ApprovalLinePatch!): ApprovalLine!
|
|
3141
|
-
|
|
3142
|
-
"""To modify Notification information"""
|
|
3143
|
-
updateNotification(id: String!, patch: NotificationPatch!): Notification!
|
|
3144
|
-
|
|
3145
|
-
"""To modify NotificationRule information"""
|
|
3146
|
-
updateNotificationRule(id: String!, patch: NotificationRulePatch!): NotificationRule!
|
|
3147
|
-
|
|
3148
|
-
"""To modify Oauth2Client information"""
|
|
3149
|
-
updateOauth2Client(id: String!, patch: Oauth2ClientPatch!): Oauth2Client!
|
|
3150
|
-
|
|
3151
|
-
"""To modify PayloadLog information"""
|
|
3152
|
-
updatePayloadLog(id: String!, patch: PayloadLogPatch!): PayloadLog!
|
|
3153
|
-
|
|
3154
|
-
"""To modify PlayGroup information"""
|
|
3155
|
-
updatePlayGroup(id: String!, patch: PlayGroupPatch!): PlayGroup!
|
|
3156
|
-
|
|
3157
|
-
"""To modify privilege information"""
|
|
3158
|
-
updatePrivilege(category: String!, name: String!, patch: PrivilegePatch!): Privilege!
|
|
3159
|
-
|
|
3160
|
-
"""To modify role information"""
|
|
3161
|
-
updateRole(id: String!, patch: RolePatch!): Role!
|
|
3162
|
-
|
|
3163
|
-
"""To update role Menu"""
|
|
3164
|
-
updateRoleMenu(isCheckedMenu: Boolean!, roleId: String!, targetMenuId: String!): Menu!
|
|
3165
|
-
|
|
3166
|
-
"""To update role Menu"""
|
|
3167
|
-
updateRoleMenus(isCheckedAll: Boolean!, parentMenuId: String!, roleId: String!): [Menu!]!
|
|
3168
|
-
|
|
3169
|
-
"""To modify scenario information"""
|
|
3170
|
-
updateScenario(name: String!, patch: ScenarioPatch!): Scenario!
|
|
3171
|
-
|
|
3172
|
-
"""To modify Setting information"""
|
|
3173
|
-
updateSetting(name: String!, patch: SettingPatch!): Setting!
|
|
3174
|
-
|
|
3175
|
-
"""To modify Terminology information"""
|
|
3176
|
-
updateTerminology(id: String!, patch: TerminologyPatch!): Terminology!
|
|
3177
|
-
|
|
3178
|
-
"""To modify Theme information"""
|
|
3179
|
-
updateTheme(id: String!, patch: ThemePatch!): Theme!
|
|
3180
|
-
|
|
3181
|
-
"""To modify user information"""
|
|
3182
|
-
updateUser(email: String!, patch: UserPatch!): User!
|
|
3183
|
-
|
|
3184
|
-
"""To update roles for a user"""
|
|
3185
|
-
updateUserRoles(availableRoles: [ObjectRef!]!, selectedRoles: [ObjectRef!]!, userId: String!): User!
|
|
3186
|
-
}
|
|
3187
|
-
|
|
3188
|
-
input NewActivity {
|
|
3189
|
-
active: Boolean
|
|
3190
|
-
activityType: String
|
|
3191
|
-
approvalLine: Object
|
|
3192
|
-
assigneeRole: ObjectRef
|
|
3193
|
-
assignees: Object
|
|
3194
|
-
description: String
|
|
3195
|
-
issuerRole: ObjectRef
|
|
3196
|
-
model: Object
|
|
3197
|
-
multiple: String
|
|
3198
|
-
name: String!
|
|
3199
|
-
priority: Float
|
|
3200
|
-
reportSource: String
|
|
3201
|
-
reportType: String
|
|
3202
|
-
schedule: String
|
|
3203
|
-
scheduleId: String
|
|
3204
|
-
searchKeys: Object
|
|
3205
|
-
standardTime: Float
|
|
3206
|
-
startingType: String
|
|
3207
|
-
state: String
|
|
3208
|
-
supervisoryRole: ObjectRef
|
|
3209
|
-
thumbnail: Upload
|
|
3210
|
-
timezone: String
|
|
3211
|
-
uiSource: String
|
|
3212
|
-
uiType: String
|
|
3213
|
-
viewSource: String
|
|
3214
|
-
viewType: String
|
|
3215
|
-
}
|
|
3216
|
-
|
|
3217
|
-
input NewActivityTemplate {
|
|
3218
|
-
active: Boolean
|
|
3219
|
-
activityType: String
|
|
3220
|
-
category: String
|
|
3221
|
-
description: String
|
|
3222
|
-
model: Object
|
|
3223
|
-
name: String!
|
|
3224
|
-
reportSource: String
|
|
3225
|
-
reportType: String
|
|
3226
|
-
state: String
|
|
3227
|
-
thumbnail: Upload
|
|
3228
|
-
uiSource: String
|
|
3229
|
-
uiType: String
|
|
3230
|
-
viewSource: String
|
|
3231
|
-
viewType: String
|
|
3232
|
-
visibility: String
|
|
3233
|
-
}
|
|
3234
|
-
|
|
3235
|
-
input NewAppliance {
|
|
3236
|
-
brand: String!
|
|
3237
|
-
description: String
|
|
3238
|
-
model: String!
|
|
3239
|
-
name: String!
|
|
3240
|
-
netmask: String
|
|
3241
|
-
serialNo: String!
|
|
3242
|
-
}
|
|
3243
|
-
|
|
3244
|
-
input NewApplication {
|
|
3245
|
-
description: String
|
|
3246
|
-
email: String
|
|
3247
|
-
icon: String
|
|
3248
|
-
name: String!
|
|
3249
|
-
redirectUrl: String
|
|
3250
|
-
type: ApplicationType
|
|
3251
|
-
url: String
|
|
3252
|
-
webhook: String
|
|
3253
|
-
}
|
|
3254
|
-
|
|
3255
|
-
input NewApprovalLine {
|
|
3256
|
-
description: String
|
|
3257
|
-
model: Object
|
|
3258
|
-
name: String!
|
|
3259
|
-
owner: ObjectRefApprovalLineOwnerType!
|
|
3260
|
-
ownerType: ApprovalLineOwnerType!
|
|
3261
|
-
}
|
|
3262
|
-
|
|
3263
|
-
input NewAttachment {
|
|
3264
|
-
category: String
|
|
3265
|
-
description: String
|
|
3266
|
-
file: Upload!
|
|
3267
|
-
refBy: String
|
|
3268
|
-
refType: String
|
|
3269
|
-
}
|
|
3270
|
-
|
|
3271
|
-
input NewAttributeSet {
|
|
3272
|
-
active: Boolean
|
|
3273
|
-
description: String
|
|
3274
|
-
entity: String!
|
|
3275
|
-
items: [AttributeSetItemPatch!]
|
|
3276
|
-
}
|
|
3277
|
-
|
|
3278
|
-
input NewBoard {
|
|
3279
|
-
description: String
|
|
3280
|
-
groupId: String
|
|
3281
|
-
model: String!
|
|
3282
|
-
name: String!
|
|
3283
|
-
thumbnail: String
|
|
3284
|
-
}
|
|
3285
|
-
|
|
3286
|
-
input NewBoardTemplate {
|
|
3287
|
-
description: String
|
|
3288
|
-
model: String!
|
|
3289
|
-
name: String!
|
|
3290
|
-
state: BoardTemplateStatus
|
|
3291
|
-
thumbnail: String
|
|
3292
|
-
}
|
|
3293
|
-
|
|
3294
|
-
input NewCommonCode {
|
|
3295
|
-
description: String
|
|
3296
|
-
details: [String!]
|
|
3297
|
-
name: String!
|
|
3298
|
-
}
|
|
3299
|
-
|
|
3300
|
-
input NewCommonCodeDetail {
|
|
3301
|
-
commonCode: ObjectRef!
|
|
3302
|
-
description: String
|
|
3303
|
-
name: String!
|
|
3304
|
-
rank: Float!
|
|
3305
|
-
}
|
|
3306
|
-
|
|
3307
|
-
input NewConnection {
|
|
3308
|
-
description: String
|
|
3309
|
-
endpoint: String
|
|
3310
|
-
name: String!
|
|
3311
|
-
params: String
|
|
3312
|
-
type: String
|
|
3313
|
-
}
|
|
3314
|
-
|
|
3315
|
-
input NewContact {
|
|
3316
|
-
address: String
|
|
3317
|
-
company: String
|
|
3318
|
-
department: String
|
|
3319
|
-
email: String
|
|
3320
|
-
items: [ContactItemPatch!]
|
|
3321
|
-
name: String!
|
|
3322
|
-
note: String
|
|
3323
|
-
phone: String
|
|
3324
|
-
profile: ProfileInput
|
|
3325
|
-
}
|
|
3326
|
-
|
|
3327
|
-
input NewDataArchive {
|
|
3328
|
-
downloadUrl: String
|
|
3329
|
-
requestParams: Object
|
|
3330
|
-
status: String
|
|
3331
|
-
type: String
|
|
3332
|
-
}
|
|
3333
|
-
|
|
3334
|
-
input NewDataKeySet {
|
|
3335
|
-
active: Boolean
|
|
3336
|
-
dataKeyItems: [DataKeyItemPatch!]
|
|
3337
|
-
description: String
|
|
3338
|
-
name: String!
|
|
3339
|
-
reportType: String
|
|
3340
|
-
reportView: String
|
|
3341
|
-
thumbnail: Upload
|
|
3342
|
-
}
|
|
3343
|
-
|
|
3344
|
-
input NewDataOoc {
|
|
3345
|
-
collectedAt: Timestamp
|
|
3346
|
-
data: Object
|
|
3347
|
-
dataSample: ObjectRef
|
|
3348
|
-
dataSet: ObjectRef
|
|
3349
|
-
dataSetVersion: Float
|
|
3350
|
-
description: String
|
|
3351
|
-
name: String!
|
|
3352
|
-
ooc: Boolean
|
|
3353
|
-
oos: Boolean
|
|
3354
|
-
rawData: String
|
|
3355
|
-
source: String
|
|
3356
|
-
state: DataOocStatus
|
|
3357
|
-
workDate: String
|
|
3358
|
-
workShift: String
|
|
3359
|
-
}
|
|
3360
|
-
|
|
3361
|
-
input NewDataSample {
|
|
3362
|
-
collectedAt: Timestamp
|
|
3363
|
-
data: Object
|
|
3364
|
-
dataSet: ObjectRef
|
|
3365
|
-
dataSetVersion: Float
|
|
3366
|
-
description: String
|
|
3367
|
-
name: String
|
|
3368
|
-
rawData: String
|
|
3369
|
-
source: String
|
|
3370
|
-
workDate: String
|
|
3371
|
-
workShift: String
|
|
3372
|
-
}
|
|
3373
|
-
|
|
3374
|
-
input NewDataSensor {
|
|
3375
|
-
active: Boolean
|
|
3376
|
-
appliance: ObjectRef
|
|
3377
|
-
brand: String
|
|
3378
|
-
dataSet: ObjectRef
|
|
3379
|
-
description: String
|
|
3380
|
-
deviceId: String
|
|
3381
|
-
model: String
|
|
3382
|
-
name: String!
|
|
3383
|
-
netmask: String
|
|
3384
|
-
refBy: String
|
|
3385
|
-
serialNo: String
|
|
3386
|
-
tag: String
|
|
3387
|
-
}
|
|
3388
|
-
|
|
3389
|
-
input NewDataSet {
|
|
3390
|
-
active: Boolean
|
|
3391
|
-
approvalLine: Object
|
|
3392
|
-
assignees: Object
|
|
3393
|
-
dataItems: [DataItemPatch!]
|
|
3394
|
-
dataKeySet: ObjectRef
|
|
3395
|
-
description: String
|
|
3396
|
-
entryRole: ObjectRef
|
|
3397
|
-
entryType: String
|
|
3398
|
-
entryView: String
|
|
3399
|
-
monitorType: String
|
|
3400
|
-
monitorView: String
|
|
3401
|
-
name: String!
|
|
3402
|
-
partitionKeys: Object
|
|
3403
|
-
reportTemplate: Upload
|
|
3404
|
-
reportType: String
|
|
3405
|
-
reportView: String
|
|
3406
|
-
schedule: String
|
|
3407
|
-
summaryPeriod: String
|
|
3408
|
-
supervisoryRole: ObjectRef
|
|
3409
|
-
timezone: String
|
|
3410
|
-
type: String
|
|
3411
|
-
useCase: String
|
|
3412
|
-
}
|
|
3413
|
-
|
|
3414
|
-
input NewDepartment {
|
|
3415
|
-
active: Boolean
|
|
3416
|
-
controlNo: String!
|
|
3417
|
-
description: String
|
|
3418
|
-
extension: String
|
|
3419
|
-
manager: ObjectRefForEmployee
|
|
3420
|
-
name: String!
|
|
3421
|
-
parent: ObjectRef
|
|
3422
|
-
picture: Upload
|
|
3423
|
-
state: DepartmentStatus
|
|
3424
|
-
}
|
|
3425
|
-
|
|
3426
|
-
input NewEmployee {
|
|
3427
|
-
active: Boolean
|
|
3428
|
-
controlNo: String!
|
|
3429
|
-
department: ObjectRef
|
|
3430
|
-
extension: String
|
|
3431
|
-
hiredOn: String
|
|
3432
|
-
name: String!
|
|
3433
|
-
note: String
|
|
3434
|
-
photo: Upload
|
|
3435
|
-
supervisor: ObjectRefForEmployee
|
|
3436
|
-
type: EmployeeType
|
|
3437
|
-
user: ObjectRefForUser
|
|
3438
|
-
}
|
|
3439
|
-
|
|
3440
|
-
input NewEntity {
|
|
3441
|
-
active: Boolean
|
|
3442
|
-
association: String
|
|
3443
|
-
bundle: String!
|
|
3444
|
-
columns: [String!]
|
|
3445
|
-
dataProp: String
|
|
3446
|
-
delStrategy: String
|
|
3447
|
-
description: String
|
|
3448
|
-
extEntity: Boolean
|
|
3449
|
-
fixedColumns: Int
|
|
3450
|
-
idField: String
|
|
3451
|
-
idType: String
|
|
3452
|
-
master: String
|
|
3453
|
-
multiSaveUrl: String
|
|
3454
|
-
name: String!
|
|
3455
|
-
refField: String
|
|
3456
|
-
searchUrl: String
|
|
3457
|
-
tableName: String!
|
|
3458
|
-
titleField: String
|
|
3459
|
-
}
|
|
3460
|
-
|
|
3461
|
-
input NewEntityColumn {
|
|
3462
|
-
colSize: Float
|
|
3463
|
-
colType: String!
|
|
3464
|
-
defVal: String
|
|
3465
|
-
description: String
|
|
3466
|
-
entity: ObjectRef!
|
|
3467
|
-
formEditor: String
|
|
3468
|
-
formFormat: String
|
|
3469
|
-
formValidator: String
|
|
3470
|
-
gridAlign: String
|
|
3471
|
-
gridEditor: String
|
|
3472
|
-
gridFormat: String
|
|
3473
|
-
gridRank: Int
|
|
3474
|
-
gridValidator: String
|
|
3475
|
-
gridWidth: Int
|
|
3476
|
-
ignoreOnSav: Boolean
|
|
3477
|
-
name: String!
|
|
3478
|
-
nullable: Boolean
|
|
3479
|
-
rangeVal: String
|
|
3480
|
-
rank: Float
|
|
3481
|
-
refName: String
|
|
3482
|
-
refParams: String
|
|
3483
|
-
refRelated: String
|
|
3484
|
-
refType: String
|
|
3485
|
-
refUrl: String
|
|
3486
|
-
reverseSort: Boolean
|
|
3487
|
-
searchEditor: String
|
|
3488
|
-
searchInitVal: String
|
|
3489
|
-
searchName: String
|
|
3490
|
-
searchOper: String
|
|
3491
|
-
searchRank: Int
|
|
3492
|
-
sortRank: Int
|
|
3493
|
-
term: String
|
|
3494
|
-
uniqRank: Int
|
|
3495
|
-
virtualField: Boolean
|
|
3496
|
-
}
|
|
3497
|
-
|
|
3498
|
-
input NewFont {
|
|
3499
|
-
active: Boolean
|
|
3500
|
-
files: [Upload!]
|
|
3501
|
-
name: String!
|
|
3502
|
-
path: String
|
|
3503
|
-
provider: String
|
|
3504
|
-
uri: String
|
|
3505
|
-
}
|
|
3506
|
-
|
|
3507
|
-
input NewGroup {
|
|
3508
|
-
description: String
|
|
3509
|
-
name: String!
|
|
3510
|
-
}
|
|
3511
|
-
|
|
3512
|
-
input NewLiteMenu {
|
|
3513
|
-
active: Boolean
|
|
3514
|
-
appName: String
|
|
3515
|
-
description: String
|
|
3516
|
-
icon: String
|
|
3517
|
-
name: String!
|
|
3518
|
-
parent: String
|
|
3519
|
-
rank: Int
|
|
3520
|
-
type: String
|
|
3521
|
-
value: String
|
|
3522
|
-
}
|
|
3523
|
-
|
|
3524
|
-
input NewMenu {
|
|
3525
|
-
buttons: [ObjectRef!]
|
|
3526
|
-
category: String
|
|
3527
|
-
children: [ObjectRef!]
|
|
3528
|
-
columns: [ObjectRef!]
|
|
3529
|
-
description: String
|
|
3530
|
-
detailFormId: String
|
|
3531
|
-
detailLayout: String
|
|
3532
|
-
fixedColumns: Int
|
|
3533
|
-
gridSaveUrl: String
|
|
3534
|
-
hiddenFlag: Boolean
|
|
3535
|
-
iconPath: String
|
|
3536
|
-
idField: String
|
|
3537
|
-
itemsProp: String
|
|
3538
|
-
menuType: String!
|
|
3539
|
-
name: String!
|
|
3540
|
-
pagination: Boolean
|
|
3541
|
-
parent: ObjectRef
|
|
3542
|
-
rank: Int
|
|
3543
|
-
resourceId: String
|
|
3544
|
-
resourceName: String
|
|
3545
|
-
resourceType: String
|
|
3546
|
-
resourceUrl: String
|
|
3547
|
-
role: ObjectRef
|
|
3548
|
-
routing: String
|
|
3549
|
-
routingType: String
|
|
3550
|
-
template: String
|
|
3551
|
-
titleField: String
|
|
3552
|
-
totalProp: String
|
|
3553
|
-
}
|
|
3554
|
-
|
|
3555
|
-
input NewMenuButton {
|
|
3556
|
-
auth: String
|
|
3557
|
-
icon: String
|
|
3558
|
-
logic: String
|
|
3559
|
-
menu: String!
|
|
3560
|
-
rank: Int
|
|
3561
|
-
style: String
|
|
3562
|
-
text: String!
|
|
3563
|
-
}
|
|
3564
|
-
|
|
3565
|
-
input NewMenuColumn {
|
|
3566
|
-
colSize: Int
|
|
3567
|
-
colType: String!
|
|
3568
|
-
defVal: String
|
|
3569
|
-
description: String
|
|
3570
|
-
extField: Boolean
|
|
3571
|
-
formEditor: String
|
|
3572
|
-
formFormat: String
|
|
3573
|
-
formValidator: String
|
|
3574
|
-
gridAlign: String
|
|
3575
|
-
gridEditor: String
|
|
3576
|
-
gridFormat: String
|
|
3577
|
-
gridRank: Int
|
|
3578
|
-
gridValidator: String
|
|
3579
|
-
gridWidth: Int
|
|
3580
|
-
ignoreOnSave: Boolean
|
|
3581
|
-
menu: String!
|
|
3582
|
-
name: String!
|
|
3583
|
-
nullable: Boolean
|
|
3584
|
-
rangeVal: String
|
|
3585
|
-
rank: Int
|
|
3586
|
-
refName: String
|
|
3587
|
-
refParams: String
|
|
3588
|
-
refRelated: String
|
|
3589
|
-
refType: String
|
|
3590
|
-
refUrl: String
|
|
3591
|
-
reverseSort: Boolean
|
|
3592
|
-
searchEditor: String
|
|
3593
|
-
searchInitVal: String
|
|
3594
|
-
searchName: String
|
|
3595
|
-
searchOper: String
|
|
3596
|
-
searchRank: Int
|
|
3597
|
-
sortRank: Int
|
|
3598
|
-
term: String
|
|
3599
|
-
uniqRank: Int
|
|
3600
|
-
virtualField: Boolean
|
|
3601
|
-
}
|
|
3602
|
-
|
|
3603
|
-
input NewMenuDetail {
|
|
3604
|
-
association: String
|
|
3605
|
-
buttons: [String!]
|
|
3606
|
-
columns: [String!]
|
|
3607
|
-
customView: String
|
|
3608
|
-
dataProp: String
|
|
3609
|
-
entityId: String
|
|
3610
|
-
masterField: String
|
|
3611
|
-
menu: String!
|
|
3612
|
-
name: String!
|
|
3613
|
-
saveUrl: String
|
|
3614
|
-
searchUrl: String
|
|
3615
|
-
viewSection: String!
|
|
3616
|
-
}
|
|
3617
|
-
|
|
3618
|
-
input NewMenuDetailButton {
|
|
3619
|
-
icon: String
|
|
3620
|
-
logic: String
|
|
3621
|
-
menuDetail: String!
|
|
3622
|
-
rank: Int
|
|
3623
|
-
style: String
|
|
3624
|
-
text: String!
|
|
3625
|
-
}
|
|
3626
|
-
|
|
3627
|
-
input NewMenuDetailColumn {
|
|
3628
|
-
colSize: Int
|
|
3629
|
-
colType: String
|
|
3630
|
-
defVal: String
|
|
3631
|
-
description: String
|
|
3632
|
-
extField: Boolean
|
|
3633
|
-
formEditor: String
|
|
3634
|
-
formFormat: String
|
|
3635
|
-
formValidator: String
|
|
3636
|
-
gridAlign: String
|
|
3637
|
-
gridEditor: String
|
|
3638
|
-
gridFormat: String
|
|
3639
|
-
gridRank: Int
|
|
3640
|
-
gridValidator: String
|
|
3641
|
-
gridWidth: Int
|
|
3642
|
-
ignoreOnSave: Boolean
|
|
3643
|
-
menuDetail: String
|
|
3644
|
-
name: String
|
|
3645
|
-
nullable: Boolean
|
|
3646
|
-
rangeVal: String
|
|
3647
|
-
rank: Int
|
|
3648
|
-
refName: String
|
|
3649
|
-
refParams: String
|
|
3650
|
-
refRelated: String
|
|
3651
|
-
refType: String
|
|
3652
|
-
refUrl: String
|
|
3653
|
-
reverseSort: Boolean
|
|
3654
|
-
searchEditor: String
|
|
3655
|
-
searchInitVal: String
|
|
3656
|
-
searchName: String
|
|
3657
|
-
searchOper: String
|
|
3658
|
-
searchRank: Int
|
|
3659
|
-
sortRank: Int
|
|
3660
|
-
term: String
|
|
3661
|
-
uniqRank: Int
|
|
3662
|
-
virtualField: Boolean
|
|
3663
|
-
}
|
|
3664
|
-
|
|
3665
|
-
input NewNotification {
|
|
3666
|
-
body: String
|
|
3667
|
-
image: String
|
|
3668
|
-
ownerId: String
|
|
3669
|
-
property: Object
|
|
3670
|
-
subject: String
|
|
3671
|
-
timestamp: Timestamp
|
|
3672
|
-
title: String
|
|
3673
|
-
type: String
|
|
3674
|
-
url: String
|
|
3675
|
-
}
|
|
3676
|
-
|
|
3677
|
-
input NewNotificationRule {
|
|
3678
|
-
active: Boolean
|
|
3679
|
-
body: String
|
|
3680
|
-
description: String
|
|
3681
|
-
name: String!
|
|
3682
|
-
state: NotificationRuleStatus
|
|
3683
|
-
thumbnail: Upload
|
|
3684
|
-
title: String
|
|
3685
|
-
url: String
|
|
3686
|
-
}
|
|
3687
|
-
|
|
3688
|
-
input NewOauth2Client {
|
|
3689
|
-
accessToken: String
|
|
3690
|
-
accessTokenUrl: String
|
|
3691
|
-
authUrl: String
|
|
3692
|
-
callbackUrl: String
|
|
3693
|
-
clientId: String
|
|
3694
|
-
clientSecret: String
|
|
3695
|
-
codeChallengeMethod: String
|
|
3696
|
-
codeVerifier: String
|
|
3697
|
-
description: String
|
|
3698
|
-
grantType: String
|
|
3699
|
-
icon: String
|
|
3700
|
-
jwtToken: String
|
|
3701
|
-
name: String!
|
|
3702
|
-
password: String
|
|
3703
|
-
refreshToken: String
|
|
3704
|
-
scopes: String
|
|
3705
|
-
username: String
|
|
3706
|
-
webhook: String
|
|
3707
|
-
}
|
|
3708
|
-
|
|
3709
|
-
input NewPayloadLog {
|
|
3710
|
-
description: String
|
|
3711
|
-
name: String!
|
|
3712
|
-
}
|
|
3713
|
-
|
|
3714
|
-
input NewPlayGroup {
|
|
3715
|
-
description: String
|
|
3716
|
-
name: String!
|
|
3717
|
-
}
|
|
3718
|
-
|
|
3719
|
-
input NewPrivilege {
|
|
3720
|
-
category: String!
|
|
3721
|
-
description: String
|
|
3722
|
-
name: String!
|
|
3723
|
-
roles: [ObjectRef!]
|
|
3724
|
-
}
|
|
3725
|
-
|
|
3726
|
-
input NewRole {
|
|
3727
|
-
description: String
|
|
3728
|
-
name: String!
|
|
3729
|
-
privileges: [ObjectRef!]
|
|
3730
|
-
users: [ObjectRef!]
|
|
3731
|
-
}
|
|
3732
|
-
|
|
3733
|
-
input NewScenario {
|
|
3734
|
-
active: Boolean
|
|
3735
|
-
description: String
|
|
3736
|
-
name: String!
|
|
3737
|
-
schedule: String
|
|
3738
|
-
timezone: String
|
|
3739
|
-
type: String
|
|
3740
|
-
}
|
|
3741
|
-
|
|
3742
|
-
input NewSetting {
|
|
3743
|
-
category: String!
|
|
3744
|
-
description: String
|
|
3745
|
-
name: String!
|
|
3746
|
-
value: String
|
|
3747
|
-
}
|
|
3748
|
-
|
|
3749
|
-
input NewTerminology {
|
|
3750
|
-
category: String!
|
|
3751
|
-
description: String
|
|
3752
|
-
display: String!
|
|
3753
|
-
locale: String!
|
|
3754
|
-
name: String!
|
|
3755
|
-
}
|
|
3756
|
-
|
|
3757
|
-
input NewTheme {
|
|
3758
|
-
description: String
|
|
3759
|
-
name: String!
|
|
3760
|
-
type: String
|
|
3761
|
-
value: Object
|
|
3762
|
-
}
|
|
3763
|
-
|
|
3764
|
-
input NewUser {
|
|
3765
|
-
description: String
|
|
3766
|
-
email: String!
|
|
3767
|
-
name: String!
|
|
3768
|
-
password: String
|
|
3769
|
-
roles: [ObjectRef!]
|
|
3770
|
-
userType: String
|
|
3771
|
-
}
|
|
3772
|
-
|
|
3773
|
-
input NewUserByDomainWizardInput {
|
|
3774
|
-
email: String!
|
|
3775
|
-
isInvitee: Boolean
|
|
3776
|
-
name: String!
|
|
3777
|
-
owner: Boolean!
|
|
3778
|
-
password: String
|
|
3779
|
-
roles: [NewRole!]!
|
|
3780
|
-
}
|
|
3781
|
-
|
|
3782
|
-
"""Entity for Notification"""
|
|
3783
|
-
type Notification {
|
|
3784
|
-
body: String
|
|
3785
|
-
createdAt: Timestamp
|
|
3786
|
-
creator: User
|
|
3787
|
-
domain: Domain
|
|
3788
|
-
id: ID!
|
|
3789
|
-
image: String
|
|
3790
|
-
owner: User
|
|
3791
|
-
property: Object
|
|
3792
|
-
state: String
|
|
3793
|
-
subject: String
|
|
3794
|
-
timestamp: Date
|
|
3795
|
-
title: String
|
|
3796
|
-
type: String
|
|
3797
|
-
updatedAt: Timestamp
|
|
3798
|
-
updater: User
|
|
3799
|
-
url: String
|
|
3800
|
-
}
|
|
3801
|
-
|
|
3802
|
-
type NotificationList {
|
|
3803
|
-
items: [Notification!]!
|
|
3804
|
-
total: Int!
|
|
3805
|
-
}
|
|
3806
|
-
|
|
3807
|
-
input NotificationPatch {
|
|
3808
|
-
cuFlag: String
|
|
3809
|
-
id: ID
|
|
3810
|
-
state: NotificationStatus
|
|
3811
|
-
}
|
|
3812
|
-
|
|
3813
|
-
"""Entity for NotificationRule"""
|
|
3814
|
-
type NotificationRule {
|
|
3815
|
-
body: String
|
|
3816
|
-
channels: String
|
|
3817
|
-
createdAt: Timestamp
|
|
3818
|
-
creator: User
|
|
3819
|
-
deletedAt: Timestamp
|
|
3820
|
-
description: String
|
|
3821
|
-
domain: Domain
|
|
3822
|
-
id: ID!
|
|
3823
|
-
name: String
|
|
3824
|
-
|
|
3825
|
-
"""notification recipients."""
|
|
3826
|
-
recipients: [RecipientItem!]
|
|
3827
|
-
state: String
|
|
3828
|
-
thumbnail: String
|
|
3829
|
-
title: String
|
|
3830
|
-
updatedAt: Timestamp
|
|
3831
|
-
updater: User
|
|
3832
|
-
url: String
|
|
3833
|
-
version: Float
|
|
3834
|
-
}
|
|
3835
|
-
|
|
3836
|
-
type NotificationRuleList {
|
|
3837
|
-
items: [NotificationRule!]!
|
|
3838
|
-
total: Int!
|
|
3839
|
-
}
|
|
3840
|
-
|
|
3841
|
-
input NotificationRulePatch {
|
|
3842
|
-
body: String
|
|
3843
|
-
cuFlag: String
|
|
3844
|
-
description: String
|
|
3845
|
-
id: ID
|
|
3846
|
-
name: String
|
|
3847
|
-
state: NotificationRuleStatus
|
|
3848
|
-
thumbnail: Upload
|
|
3849
|
-
title: String
|
|
3850
|
-
url: String
|
|
3851
|
-
}
|
|
3852
|
-
|
|
3853
|
-
"""state enumeration of a notificationRule"""
|
|
3854
|
-
enum NotificationRuleStatus {
|
|
3855
|
-
DRAFT
|
|
3856
|
-
RELEASED
|
|
3857
|
-
}
|
|
3858
|
-
|
|
3859
|
-
"""state enumeration of a notification"""
|
|
3860
|
-
enum NotificationStatus {
|
|
3861
|
-
NOTREAD
|
|
3862
|
-
READ
|
|
3863
|
-
}
|
|
3864
|
-
|
|
3865
|
-
"""Entity for Oauth2Client"""
|
|
3866
|
-
type Oauth2Client {
|
|
3867
|
-
accessToken: String
|
|
3868
|
-
accessTokenUrl: String
|
|
3869
|
-
authUrl: String
|
|
3870
|
-
callbackUrl: String
|
|
3871
|
-
clientId: String
|
|
3872
|
-
clientSecret: String
|
|
3873
|
-
codeChallengeMethod: String
|
|
3874
|
-
codeVerifier: String
|
|
3875
|
-
createdAt: Timestamp
|
|
3876
|
-
creator: User
|
|
3877
|
-
description: String
|
|
3878
|
-
domain: Domain
|
|
3879
|
-
expires: Timestamp
|
|
3880
|
-
grantType: String
|
|
3881
|
-
icon: String
|
|
3882
|
-
id: ID!
|
|
3883
|
-
jwtToken: String
|
|
3884
|
-
name: String!
|
|
3885
|
-
password: String
|
|
3886
|
-
refreshToken: String
|
|
3887
|
-
scopes: String
|
|
3888
|
-
state: String
|
|
3889
|
-
tokenType: String
|
|
3890
|
-
updatedAt: Timestamp
|
|
3891
|
-
updater: User
|
|
3892
|
-
username: String
|
|
3893
|
-
webhook: String
|
|
3894
|
-
}
|
|
3895
|
-
|
|
3896
|
-
type Oauth2ClientList {
|
|
3897
|
-
items: [Oauth2Client!]!
|
|
3898
|
-
total: Int!
|
|
3899
|
-
}
|
|
3900
|
-
|
|
3901
|
-
input Oauth2ClientPatch {
|
|
3902
|
-
accessToken: String
|
|
3903
|
-
accessTokenUrl: String
|
|
3904
|
-
authUrl: String
|
|
3905
|
-
callbackUrl: String
|
|
3906
|
-
clientId: String
|
|
3907
|
-
clientSecret: String
|
|
3908
|
-
codeChallengeMethod: String
|
|
3909
|
-
codeVerifier: String
|
|
3910
|
-
description: String
|
|
3911
|
-
grantType: String
|
|
3912
|
-
icon: String
|
|
3913
|
-
jwtToken: String
|
|
3914
|
-
name: String
|
|
3915
|
-
password: String
|
|
3916
|
-
refreshToken: String
|
|
3917
|
-
scopes: String
|
|
3918
|
-
username: String
|
|
3919
|
-
webhook: String
|
|
3920
|
-
}
|
|
3921
|
-
|
|
3922
|
-
"""Can be anything"""
|
|
3923
|
-
scalar Object
|
|
3924
|
-
|
|
3925
|
-
input ObjectRef {
|
|
3926
|
-
"""Field description"""
|
|
3927
|
-
description: String
|
|
3928
|
-
|
|
3929
|
-
"""Field id"""
|
|
3930
|
-
id: ID!
|
|
3931
|
-
|
|
3932
|
-
"""Field name"""
|
|
3933
|
-
name: String
|
|
3934
|
-
}
|
|
3935
|
-
|
|
3936
|
-
input ObjectRefApprovalLineOwnerType {
|
|
3937
|
-
controlNo: String
|
|
3938
|
-
|
|
3939
|
-
"""Field description"""
|
|
3940
|
-
description: String
|
|
3941
|
-
|
|
3942
|
-
"""Field id"""
|
|
3943
|
-
id: ID!
|
|
3944
|
-
|
|
3945
|
-
"""Field name"""
|
|
3946
|
-
name: String
|
|
3947
|
-
}
|
|
3948
|
-
|
|
3949
|
-
input ObjectRefForEmployee {
|
|
3950
|
-
controlNo: String
|
|
3951
|
-
|
|
3952
|
-
"""Field description"""
|
|
3953
|
-
description: String
|
|
3954
|
-
email: String
|
|
3955
|
-
|
|
3956
|
-
"""Field id"""
|
|
3957
|
-
id: ID!
|
|
3958
|
-
|
|
3959
|
-
"""Field name"""
|
|
3960
|
-
name: String
|
|
3961
|
-
photo: String
|
|
3962
|
-
}
|
|
3963
|
-
|
|
3964
|
-
input ObjectRefForUser {
|
|
3965
|
-
"""Field description"""
|
|
3966
|
-
description: String
|
|
3967
|
-
email: String
|
|
3968
|
-
|
|
3969
|
-
"""Field id"""
|
|
3970
|
-
id: ID!
|
|
3971
|
-
|
|
3972
|
-
"""Field name"""
|
|
3973
|
-
name: String
|
|
3974
|
-
}
|
|
3975
|
-
|
|
3976
|
-
type OrgMemberTarget {
|
|
3977
|
-
controlNo: String
|
|
3978
|
-
|
|
3979
|
-
"""Field description"""
|
|
3980
|
-
description: String
|
|
3981
|
-
|
|
3982
|
-
"""Field id"""
|
|
3983
|
-
id: ID!
|
|
3984
|
-
|
|
3985
|
-
"""Field name"""
|
|
3986
|
-
name: String
|
|
3987
|
-
}
|
|
3988
|
-
|
|
3989
|
-
"""type enumeration of a approval line item"""
|
|
3990
|
-
enum OrgMemberTargetType {
|
|
3991
|
-
Department
|
|
3992
|
-
Employee
|
|
3993
|
-
MyDepartment
|
|
3994
|
-
MySupervisor
|
|
3995
|
-
Myself
|
|
3996
|
-
Role
|
|
3997
|
-
}
|
|
3998
|
-
|
|
3999
|
-
input Pagination {
|
|
4000
|
-
limit: Int
|
|
4001
|
-
page: Int
|
|
4002
|
-
}
|
|
4003
|
-
|
|
4004
|
-
type Partner {
|
|
4005
|
-
approvedAt: Timestamp!
|
|
4006
|
-
approver: User
|
|
4007
|
-
domain: Domain!
|
|
4008
|
-
id: ID!
|
|
4009
|
-
partnerDomain: Domain!
|
|
4010
|
-
requestedAt: Timestamp!
|
|
4011
|
-
requester: User
|
|
4012
|
-
}
|
|
4013
|
-
|
|
4014
|
-
type PartnerList {
|
|
4015
|
-
items: [Partner!]
|
|
4016
|
-
total: Int
|
|
4017
|
-
}
|
|
4018
|
-
|
|
4019
|
-
"""Entity for PartnerSetting"""
|
|
4020
|
-
type PartnerSetting {
|
|
4021
|
-
category: String
|
|
4022
|
-
createdAt: Timestamp
|
|
4023
|
-
creator: User
|
|
4024
|
-
description: String
|
|
4025
|
-
domain: Domain
|
|
4026
|
-
id: ID!
|
|
4027
|
-
name: String
|
|
4028
|
-
partnerDomain: Domain
|
|
4029
|
-
partnerDomainId: String
|
|
4030
|
-
setting: Setting
|
|
4031
|
-
settingId: String
|
|
4032
|
-
updatedAt: Timestamp
|
|
4033
|
-
updater: User
|
|
4034
|
-
value: String
|
|
4035
|
-
}
|
|
4036
|
-
|
|
4037
|
-
type PartnerSettingList {
|
|
4038
|
-
items: [PartnerSetting!]!
|
|
4039
|
-
total: Int!
|
|
4040
|
-
}
|
|
4041
|
-
|
|
4042
|
-
input PartnerSettingPatch {
|
|
4043
|
-
cuFlag: String!
|
|
4044
|
-
id: ID
|
|
4045
|
-
partnerDomain: ObjectRef
|
|
4046
|
-
setting: ObjectRef
|
|
4047
|
-
value: String
|
|
4048
|
-
}
|
|
4049
|
-
|
|
4050
|
-
"""Entity for PayloadLog"""
|
|
4051
|
-
type PayloadLog {
|
|
4052
|
-
createdAt: Timestamp
|
|
4053
|
-
creator: User
|
|
4054
|
-
domain: Domain
|
|
4055
|
-
endpoint: String!
|
|
4056
|
-
id: ID!
|
|
4057
|
-
name: String!
|
|
4058
|
-
request: String!
|
|
4059
|
-
response: String!
|
|
4060
|
-
src: String
|
|
4061
|
-
type: String!
|
|
4062
|
-
updatedAt: Timestamp
|
|
4063
|
-
updater: User
|
|
4064
|
-
}
|
|
4065
|
-
|
|
4066
|
-
type PayloadLogList {
|
|
4067
|
-
items: [PayloadLog!]!
|
|
4068
|
-
total: Int!
|
|
4069
|
-
}
|
|
4070
|
-
|
|
4071
|
-
input PayloadLogPatch {
|
|
4072
|
-
cuFlag: String!
|
|
4073
|
-
description: String
|
|
4074
|
-
id: ID
|
|
4075
|
-
name: String
|
|
4076
|
-
}
|
|
4077
|
-
|
|
4078
|
-
type PendingObject {
|
|
4079
|
-
due: String!
|
|
4080
|
-
priority: Int!
|
|
4081
|
-
stuff: Object!
|
|
4082
|
-
tag: String
|
|
4083
|
-
}
|
|
4084
|
-
|
|
4085
|
-
"""Entity for Board PlayGroup"""
|
|
4086
|
-
type PlayGroup {
|
|
4087
|
-
boards: [Board!]
|
|
4088
|
-
createdAt: Timestamp
|
|
4089
|
-
creator: User
|
|
4090
|
-
description: String
|
|
4091
|
-
domain: Domain
|
|
4092
|
-
id: ID!
|
|
4093
|
-
name: String!
|
|
4094
|
-
updatedAt: Timestamp
|
|
4095
|
-
updater: User
|
|
4096
|
-
}
|
|
4097
|
-
|
|
4098
|
-
type PlayGroupList {
|
|
4099
|
-
items: [PlayGroup!]!
|
|
4100
|
-
total: Int!
|
|
4101
|
-
}
|
|
4102
|
-
|
|
4103
|
-
input PlayGroupPatch {
|
|
4104
|
-
description: String
|
|
4105
|
-
name: String
|
|
4106
|
-
}
|
|
4107
|
-
|
|
4108
|
-
type Privilege {
|
|
4109
|
-
category: String
|
|
4110
|
-
createdAt: Timestamp
|
|
4111
|
-
creator: User
|
|
4112
|
-
description: String
|
|
4113
|
-
id: ID!
|
|
4114
|
-
name: String!
|
|
4115
|
-
roles: [Role!]
|
|
4116
|
-
updatedAt: Timestamp
|
|
4117
|
-
updater: User
|
|
4118
|
-
}
|
|
4119
|
-
|
|
4120
|
-
type PrivilegeList {
|
|
4121
|
-
items: [Privilege!]
|
|
4122
|
-
total: Int
|
|
4123
|
-
}
|
|
4124
|
-
|
|
4125
|
-
input PrivilegePatch {
|
|
4126
|
-
category: String
|
|
4127
|
-
description: String
|
|
4128
|
-
id: String
|
|
4129
|
-
name: String
|
|
4130
|
-
roles: [ObjectRef!]
|
|
4131
|
-
}
|
|
4132
|
-
|
|
4133
|
-
"""Object type for Profile"""
|
|
4134
|
-
type Profile {
|
|
4135
|
-
left: Float
|
|
4136
|
-
picture: String
|
|
4137
|
-
top: Float
|
|
4138
|
-
zoom: Float
|
|
4139
|
-
}
|
|
4140
|
-
|
|
4141
|
-
"""Input type for Profile"""
|
|
4142
|
-
input ProfileInput {
|
|
4143
|
-
file: Upload
|
|
4144
|
-
left: Float
|
|
4145
|
-
picture: String
|
|
4146
|
-
top: Float
|
|
4147
|
-
zoom: Float
|
|
4148
|
-
}
|
|
4149
|
-
|
|
4150
|
-
type PropertySpec {
|
|
4151
|
-
label: String!
|
|
4152
|
-
name: String!
|
|
4153
|
-
placeholder: String
|
|
4154
|
-
property: Object
|
|
4155
|
-
type: String!
|
|
4156
|
-
}
|
|
4157
|
-
|
|
4158
|
-
type Query {
|
|
4159
|
-
APIDocCompletion(input: APIDocCompletionInput!): APIDocCompletionOutput!
|
|
4160
|
-
|
|
4161
|
-
"""To fetch multiple Activities"""
|
|
4162
|
-
activities(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ActivityList!
|
|
4163
|
-
|
|
4164
|
-
"""To fetch a Activity"""
|
|
4165
|
-
activity(id: String!): Activity
|
|
4166
|
-
|
|
4167
|
-
"""To fetch a ActivityApproval"""
|
|
4168
|
-
activityApproval(id: String!): ActivityApproval
|
|
4169
|
-
|
|
4170
|
-
"""To fetch multiple ActivityApprovals"""
|
|
4171
|
-
activityApprovals(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ActivityApprovalList!
|
|
4172
|
-
|
|
4173
|
-
"""To fetch a Activity by name"""
|
|
4174
|
-
activityByName(name: String!): Activity
|
|
4175
|
-
|
|
4176
|
-
"""To fetch activity events by period"""
|
|
4177
|
-
activityEvents(from: String!, to: String!): [ActivityEvent!]!
|
|
4178
|
-
|
|
4179
|
-
"""To fetch a ActivityInstance"""
|
|
4180
|
-
activityInstance(id: String!): ActivityInstance
|
|
4181
|
-
|
|
4182
|
-
"""To fetch multiple ActivityInstanceHistory"""
|
|
4183
|
-
activityInstanceHistories(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ActivityInstanceHistoryList!
|
|
4184
|
-
|
|
4185
|
-
"""To fetch a ActivityInstanceHistory"""
|
|
4186
|
-
activityInstanceHistory(id: String!): ActivityInstanceHistory!
|
|
4187
|
-
|
|
4188
|
-
"""To fetch multiple ActivityInstances"""
|
|
4189
|
-
activityInstances(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ActivityInstanceList!
|
|
4190
|
-
|
|
4191
|
-
"""To fetch multiple activity instances by activity"""
|
|
4192
|
-
activityInstancesByActivity(activityId: String!, filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ActivityInstanceList!
|
|
4193
|
-
|
|
4194
|
-
"""To fetch a Activity Summary"""
|
|
4195
|
-
activitySummary: ActivitySummary
|
|
4196
|
-
|
|
4197
|
-
"""To fetch a ActivityTemplate"""
|
|
4198
|
-
activityTemplate(id: String!): ActivityTemplate
|
|
4199
|
-
|
|
4200
|
-
"""To fetch multiple ActivityTemplates"""
|
|
4201
|
-
activityTemplates(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ActivityTemplateList!
|
|
4202
|
-
|
|
4203
|
-
"""To fetch a ActivityThread"""
|
|
4204
|
-
activityThread(id: String!): ActivityThread
|
|
4205
|
-
|
|
4206
|
-
"""To fetch multiple ActivityThreads"""
|
|
4207
|
-
activityThreads(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ActivityThreadList!
|
|
4208
|
-
appBinding(id: String!): AppBinding!
|
|
4209
|
-
appBindings(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): AppBindingList!
|
|
4210
|
-
|
|
4211
|
-
""" To fetch appliance"""
|
|
4212
|
-
appliance(id: String!): Appliance!
|
|
4213
|
-
|
|
4214
|
-
"""To fetch multiple appliance"""
|
|
4215
|
-
appliances(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApplianceList!
|
|
4216
|
-
|
|
4217
|
-
"""To fetch application"""
|
|
4218
|
-
application(id: String!): Application!
|
|
4219
|
-
|
|
4220
|
-
"""To fetch multiple application"""
|
|
4221
|
-
applications(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApplicationList!
|
|
4222
|
-
|
|
4223
|
-
"""To fetch the approvals(ActivityApprovals) which has done by me"""
|
|
4224
|
-
approvalDoneList(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ActivityApprovalList!
|
|
4225
|
-
|
|
4226
|
-
"""To fetch a approval line"""
|
|
4227
|
-
approvalLine(id: String!): ApprovalLine
|
|
4228
|
-
|
|
4229
|
-
"""To fetch referable approval lines for the user"""
|
|
4230
|
-
approvalLineReferences(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApprovalLineList!
|
|
4231
|
-
|
|
4232
|
-
"""To fetch multiple approval lines"""
|
|
4233
|
-
approvalLines(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApprovalLineList!
|
|
4234
|
-
|
|
4235
|
-
"""To fetch the list of work results I need to review"""
|
|
4236
|
-
approvalPendingList(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ActivityApprovalList!
|
|
4237
|
-
attachment(id: String!): Attachment!
|
|
4238
|
-
attachments(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): AttachmentList!
|
|
4239
|
-
|
|
4240
|
-
"""To fetch a AttributeSet"""
|
|
4241
|
-
attributeSet(id: String!): AttributeSet
|
|
4242
|
-
|
|
4243
|
-
"""To fetch a AttributeSet by Entity name"""
|
|
4244
|
-
attributeSetByEntity(entity: String!): AttributeSet
|
|
4245
|
-
|
|
4246
|
-
"""To fetch multiple AttributeSets"""
|
|
4247
|
-
attributeSets(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): AttributeSetList!
|
|
4248
|
-
|
|
4249
|
-
"""To fetch a Board"""
|
|
4250
|
-
board(id: String!): Board!
|
|
4251
|
-
|
|
4252
|
-
"""To fetch a Board Model by name"""
|
|
4253
|
-
boardByName(name: String!): Board
|
|
4254
|
-
|
|
4255
|
-
"""To fetch a BoardSettings"""
|
|
4256
|
-
boardSettings(names: [String!]): [BoardSetting!]!
|
|
4257
|
-
|
|
4258
|
-
"""To fetch a BoardTemplate"""
|
|
4259
|
-
boardTemplate(id: String!): BoardTemplate
|
|
4260
|
-
|
|
4261
|
-
"""To fetch a BoardTemplate by name"""
|
|
4262
|
-
boardTemplateByName(name: String!): BoardTemplate
|
|
4263
|
-
|
|
4264
|
-
"""To fetch multiple BoardTemplates"""
|
|
4265
|
-
boardTemplates(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardTemplateList!
|
|
4266
|
-
|
|
4267
|
-
"""To fetch BoardTemplates created by me"""
|
|
4268
|
-
boardTemplatesCreatedByMe(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardTemplateList!
|
|
4269
|
-
|
|
4270
|
-
"""To fetch multiple Boards"""
|
|
4271
|
-
boards(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardList!
|
|
4272
|
-
|
|
4273
|
-
"""To fetch Boards created by me"""
|
|
4274
|
-
boardsCreatedByMe(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardList!
|
|
4275
|
-
chatCompletion(input: ChatCompletionInput!): ChatCompletionOutput!
|
|
4276
|
-
|
|
4277
|
-
"""To check if system would provide default password to create new user"""
|
|
4278
|
-
checkDefaultPassword: Boolean!
|
|
4279
|
-
|
|
4280
|
-
"""To check if system would provide default password to create new user"""
|
|
4281
|
-
checkResettablePasswordToDefault: Boolean!
|
|
4282
|
-
|
|
4283
|
-
"""To fetch the preset of role for new user"""
|
|
4284
|
-
checkRolePreset: [Role!]!
|
|
4285
|
-
|
|
4286
|
-
"""To check if current user is belongs to current domain"""
|
|
4287
|
-
checkUserBelongsDomain: Boolean!
|
|
4288
|
-
|
|
4289
|
-
"""..."""
|
|
4290
|
-
checkUserExistence(email: String!): Boolean!
|
|
4291
|
-
|
|
4292
|
-
"""To fetch common approval lines"""
|
|
4293
|
-
commonApprovalLines(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApprovalLineList!
|
|
4294
|
-
|
|
4295
|
-
"""To fetch a CommonCode"""
|
|
4296
|
-
commonCode(name: String!): CommonCode
|
|
4297
|
-
|
|
4298
|
-
"""To fetch a CommonCodeDetail"""
|
|
4299
|
-
commonCodeDetail(id: String!): CommonCodeDetail!
|
|
4300
|
-
|
|
4301
|
-
"""To fetch multiple CommonCodeDetails"""
|
|
4302
|
-
commonCodeDetails(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): CommonCodeDetailList!
|
|
4303
|
-
|
|
4304
|
-
"""To fetch multiple CommonCodes"""
|
|
4305
|
-
commonCodes(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): CommonCodeList!
|
|
4306
|
-
|
|
4307
|
-
"""To fetch a connector"""
|
|
4308
|
-
connection(name: String!): ConnectorType!
|
|
4309
|
-
|
|
4310
|
-
"""To fetch multiple connections"""
|
|
4311
|
-
connections(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ConnectionList!
|
|
4312
|
-
|
|
4313
|
-
"""To fetch the connector from a connection"""
|
|
4314
|
-
connectorByConnection(connectionName: String!): ConnectorType!
|
|
4315
|
-
|
|
4316
|
-
"""To fetch multiple connector"""
|
|
4317
|
-
connectors: ConnectorList!
|
|
4318
|
-
|
|
4319
|
-
"""To fetch a Contact"""
|
|
4320
|
-
contact(id: String!): Contact
|
|
4321
|
-
|
|
4322
|
-
"""To fetch multiple Contacts"""
|
|
4323
|
-
contacts(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ContactList!
|
|
4324
|
-
customers: [Domain!]!
|
|
4325
|
-
|
|
4326
|
-
"""To fetch a DataArchive"""
|
|
4327
|
-
dataArchive(id: String!): DataArchive!
|
|
4328
|
-
|
|
4329
|
-
"""To fetch multiple DataArchives"""
|
|
4330
|
-
dataArchives(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DataArchiveList!
|
|
4331
|
-
|
|
4332
|
-
"""To fetch a DataKeySet"""
|
|
4333
|
-
dataKeySet(id: String!): DataKeySet
|
|
4334
|
-
|
|
4335
|
-
"""To fetch multiple DataKeySets"""
|
|
4336
|
-
dataKeySets(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DataKeySetList!
|
|
4337
|
-
|
|
4338
|
-
"""To fetch a DataOoc"""
|
|
4339
|
-
dataOoc(id: String!): DataOoc!
|
|
4340
|
-
|
|
4341
|
-
"""To fetch multiple DataOoc"""
|
|
4342
|
-
dataOocs(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DataOocList!
|
|
4343
|
-
|
|
4344
|
-
"""To fetch a data sample"""
|
|
4345
|
-
dataSample(id: String!): DataSample!
|
|
4346
|
-
|
|
4347
|
-
"""To fetch multiple data samples"""
|
|
4348
|
-
dataSamples(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DataSampleList!
|
|
4349
|
-
|
|
4350
|
-
"""To fetch multiple data samples by data key set"""
|
|
4351
|
-
dataSamplesByDataKeySet(dataKeySetId: String!, filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DataSampleList!
|
|
4352
|
-
|
|
4353
|
-
"""To fetch multiple data samples by data set"""
|
|
4354
|
-
dataSamplesByDataSet(dataSetId: String!, filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DataSampleList!
|
|
4355
|
-
|
|
4356
|
-
"""To fetch multiple DataSamples by period"""
|
|
4357
|
-
dataSamplesByPeriod(dataSetName: String!, filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, period: String!, sortings: [Sorting!]): DataSampleList!
|
|
4358
|
-
|
|
4359
|
-
"""To fetch a DataSensor"""
|
|
4360
|
-
dataSensor(id: String!): DataSensor!
|
|
4361
|
-
|
|
4362
|
-
"""To fetch multiple DataSensors"""
|
|
4363
|
-
dataSensors(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DataSensorList!
|
|
4364
|
-
|
|
4365
|
-
"""To fetch a DataSet"""
|
|
4366
|
-
dataSet(id: String!): DataSet!
|
|
4367
|
-
|
|
4368
|
-
"""To fetch a DataSet by name"""
|
|
4369
|
-
dataSetByName(name: String!): DataSet!
|
|
4370
|
-
|
|
4371
|
-
"""To fetch multiple DataSetHistories"""
|
|
4372
|
-
dataSetHistories(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DataSetHistoryList!
|
|
4373
|
-
|
|
4374
|
-
"""To fetch a DataSetHistory"""
|
|
4375
|
-
dataSetHistory(id: String!, timestamp: Date!): DataSetHistory!
|
|
4376
|
-
|
|
4377
|
-
"""To fetch multiple DataSets"""
|
|
4378
|
-
dataSets(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DataSetList!
|
|
4379
|
-
|
|
4380
|
-
"""To fetch multiple DataSets for data entry manually"""
|
|
4381
|
-
dataSetsForEntry(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DataSetList!
|
|
4382
|
-
|
|
4383
|
-
"""To fetch multiple DataSets to see data report"""
|
|
4384
|
-
dataSetsForReport(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DataSetList!
|
|
4385
|
-
|
|
4386
|
-
"""To fetch a data-spec"""
|
|
4387
|
-
dataSpec(name: String!): DataSpec!
|
|
4388
|
-
|
|
4389
|
-
"""To fetch all data-specs"""
|
|
4390
|
-
dataSpecs: DataSpecList!
|
|
4391
|
-
|
|
4392
|
-
"""To fetch multiple DataSummaries"""
|
|
4393
|
-
dataSummaries(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DataSummaryList!
|
|
4394
|
-
|
|
4395
|
-
"""To fetch multiple data summaries by data key set"""
|
|
4396
|
-
dataSummariesByDataKeySet(dataKeySetId: String!, filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DataSummaryList!
|
|
4397
|
-
|
|
4398
|
-
"""To fetch multiple data summaries by data set"""
|
|
4399
|
-
dataSummariesByDataSet(dataSetId: String!, filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DataSummaryList!
|
|
4400
|
-
|
|
4401
|
-
"""To fetch multiple data summaries by data set name"""
|
|
4402
|
-
dataSummariesByDataSetName(dataSetName: String!, filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DataSummaryList!
|
|
4403
|
-
|
|
4404
|
-
"""To fetch a DataSummary"""
|
|
4405
|
-
dataSummary(id: String!): DataSummary
|
|
4406
|
-
|
|
4407
|
-
"""To fetch multiple dynamically grouped DataSummaries"""
|
|
4408
|
-
dataSummaryByPeriod(dataKeys: [String!], dataSetName: String!, filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, period: String!, sortings: [Sorting!]): [DynamicDataSummary!]!
|
|
4409
|
-
decipherCode(input: CodeDecipherInput!): CodeDecipherOutput!
|
|
4410
|
-
decipherErrorCode(input: CodeDecipherInput!): CodeDecipherOutput!
|
|
4411
|
-
|
|
4412
|
-
"""To fetch a Department"""
|
|
4413
|
-
department(id: String!): Department
|
|
4414
|
-
|
|
4415
|
-
"""To fetch a Root Department"""
|
|
4416
|
-
departmentRoot: Department
|
|
4417
|
-
|
|
4418
|
-
"""To fetch multiple Departments"""
|
|
4419
|
-
departments(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DepartmentList!
|
|
4420
|
-
|
|
4421
|
-
"""To fetch domain"""
|
|
4422
|
-
domain(id: String!): Domain!
|
|
4423
|
-
|
|
4424
|
-
"""To fetch all domains (Only superuser is granted this privilege.)"""
|
|
4425
|
-
domains(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DomainList!
|
|
4426
|
-
|
|
4427
|
-
"""To fetch the tasks(ActivityThreads) which has done by me"""
|
|
4428
|
-
doneList(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ActivityThreadList!
|
|
4429
|
-
|
|
4430
|
-
"""To fetch my own ActivityInstances"""
|
|
4431
|
-
draftList(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ActivityInstanceList!
|
|
4432
|
-
|
|
4433
|
-
"""To fetch a Employee"""
|
|
4434
|
-
employee(id: String!): Employee
|
|
4435
|
-
|
|
4436
|
-
"""To fetch multiple Employees"""
|
|
4437
|
-
employees(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): EmployeeList!
|
|
4438
|
-
|
|
4439
|
-
"""To fetch multiple Entities"""
|
|
4440
|
-
entities(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): EntityList!
|
|
4441
|
-
|
|
4442
|
-
"""To fetch a Entity"""
|
|
4443
|
-
entity(id: String!): Entity!
|
|
4444
|
-
|
|
4445
|
-
"""To fetch a EntityColumn"""
|
|
4446
|
-
entityColumn(id: String!): EntityColumn!
|
|
4447
|
-
|
|
4448
|
-
"""To fetch multiple EntityColumns"""
|
|
4449
|
-
entityColumns(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): EntityColumnList!
|
|
4450
|
-
|
|
4451
|
-
"""To fetch a EntityMetadata"""
|
|
4452
|
-
entityMetadata(name: String!): EntityMetadata!
|
|
4453
|
-
|
|
4454
|
-
"""To fetch the state of a connection"""
|
|
4455
|
-
fetchConnectionState(name: String!): ConnectionState!
|
|
4456
|
-
|
|
4457
|
-
"""To fetch a Font"""
|
|
4458
|
-
font(id: String!): Font!
|
|
4459
|
-
|
|
4460
|
-
"""To fetch multiple Fonts"""
|
|
4461
|
-
fonts(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): FontList!
|
|
4462
|
-
|
|
4463
|
-
"""To fetch a work date and work shift for given datetime"""
|
|
4464
|
-
getWorkDateAndShift(dateTime: Timestamp!): WorkShiftInfo!
|
|
4465
|
-
grantedRoles: [GrantedRole!]!
|
|
4466
|
-
grantingRoles(customerId: String!): [GrantedRole!]!
|
|
4467
|
-
|
|
4468
|
-
"""To fetch a Group"""
|
|
4469
|
-
group(id: String!): Group
|
|
4470
|
-
|
|
4471
|
-
"""To fetch multiple Groups"""
|
|
4472
|
-
groups(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): GroupList!
|
|
4473
|
-
|
|
4474
|
-
"""To query whether I have the given permission"""
|
|
4475
|
-
hasPrivilege(category: String!, name: String!): Boolean!
|
|
4476
|
-
i18nCompletion(input: i18nCompletionInput!): i18nCompletionOutput!
|
|
4477
|
-
imageCompletion(input: ImageCompletionInput!): ImageCompletionOutput!
|
|
4478
|
-
|
|
4479
|
-
"""To fetch multiple InstallableActivitys"""
|
|
4480
|
-
installableActivities(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): InstallableActivityList!
|
|
4481
|
-
|
|
4482
|
-
"""To fetch a InstallableActivity"""
|
|
4483
|
-
installableActivity(name: String!): InstallableActivity
|
|
4484
|
-
invitation(email: String!, reference: String!, type: String!): Invitation!
|
|
4485
|
-
invitations(reference: String!, type: String!): InvitationList!
|
|
4486
|
-
|
|
4487
|
-
"""To fetch a LiteMenu"""
|
|
4488
|
-
liteMenu(id: String!): LiteMenu!
|
|
4489
|
-
|
|
4490
|
-
"""To fetch multiple LiteMenus"""
|
|
4491
|
-
liteMenus(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): LiteMenuList!
|
|
4492
|
-
|
|
4493
|
-
"""To fetch a Menu"""
|
|
4494
|
-
menu(id: String!): Menu!
|
|
4495
|
-
|
|
4496
|
-
"""To fetch a MenuButton"""
|
|
4497
|
-
menuButton(id: String!): MenuButton!
|
|
4498
|
-
|
|
4499
|
-
"""To fetch multiple MenuButtons"""
|
|
4500
|
-
menuButtons(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuButtonList!
|
|
4501
|
-
|
|
4502
|
-
"""To fetch a Menu by routing"""
|
|
4503
|
-
menuByRouting(routing: String!): Menu!
|
|
4504
|
-
|
|
4505
|
-
"""To fetch a MenuColumn"""
|
|
4506
|
-
menuColumn(id: String!): MenuColumn!
|
|
4507
|
-
|
|
4508
|
-
"""To fetch multiple MenuColumns"""
|
|
4509
|
-
menuColumns(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuColumnList!
|
|
4510
|
-
|
|
4511
|
-
"""To fetch a MenuDetail"""
|
|
4512
|
-
menuDetail(id: String!): MenuDetail!
|
|
4513
|
-
|
|
4514
|
-
"""To fetch a MenuDetailButton"""
|
|
4515
|
-
menuDetailButton(id: String!): MenuDetailButton!
|
|
4516
|
-
|
|
4517
|
-
"""To fetch multiple MenuDetailButtons"""
|
|
4518
|
-
menuDetailButtons(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuDetailButtonList!
|
|
4519
|
-
|
|
4520
|
-
"""To fetch a MenuDetailColumn"""
|
|
4521
|
-
menuDetailColumn(id: String!): MenuDetailColumn!
|
|
4522
|
-
|
|
4523
|
-
"""To fetch multiple MenuDetailColumns"""
|
|
4524
|
-
menuDetailColumns(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuDetailColumnList!
|
|
4525
|
-
|
|
4526
|
-
"""To fetch multiple MenuDetails"""
|
|
4527
|
-
menuDetails(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuDetailList!
|
|
4528
|
-
|
|
4529
|
-
"""To fetch multiple Menus"""
|
|
4530
|
-
menus(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuList!
|
|
4531
|
-
|
|
4532
|
-
"""To fetch approval lines only for to the user"""
|
|
4533
|
-
myApprovalLines(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApprovalLineList!
|
|
4534
|
-
myLoginHistories(limit: Float!): [LoginHistory!]!
|
|
4535
|
-
|
|
4536
|
-
"""To fetch my notifications"""
|
|
4537
|
-
myNotifications(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): NotificationList!
|
|
4538
|
-
|
|
4539
|
-
"""To fetch roles of current user"""
|
|
4540
|
-
myRoles: [Role!]!
|
|
4541
|
-
|
|
4542
|
-
"""To fetch a Notification"""
|
|
4543
|
-
notification(id: String!): Notification
|
|
4544
|
-
|
|
4545
|
-
"""To fetch a NotificationRule"""
|
|
4546
|
-
notificationRule(id: String!): NotificationRule
|
|
4547
|
-
|
|
4548
|
-
"""To fetch multiple NotificationRules"""
|
|
4549
|
-
notificationRules(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): NotificationRuleList!
|
|
4550
|
-
|
|
4551
|
-
"""To fetch multiple Notificationes"""
|
|
4552
|
-
notificationes(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): NotificationList!
|
|
4553
|
-
|
|
4554
|
-
"""To fetch a Oauth2Client"""
|
|
4555
|
-
oauth2Client(id: String!): Oauth2Client
|
|
4556
|
-
|
|
4557
|
-
"""To fetch multiple Oauth2Clients"""
|
|
4558
|
-
oauth2Clients(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): Oauth2ClientList!
|
|
4559
|
-
|
|
4560
|
-
"""To fetch specific domain's CommonCodes by given name"""
|
|
4561
|
-
partnerCommonCode(name: String!, partnerDomainId: String!): CommonCode!
|
|
4562
|
-
|
|
4563
|
-
"""To fetch a PartnerSetting"""
|
|
4564
|
-
partnerSetting(name: String!, partnerDomainId: String!): PartnerSetting!
|
|
4565
|
-
|
|
4566
|
-
"""To fetch multiple PartnerSettings"""
|
|
4567
|
-
partnerSettings(filters: [Filter!]!, pagination: Pagination!, partnerDomain: ObjectRef!, sortings: [Sorting!]!): PartnerSettingList!
|
|
4568
|
-
partners(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PartnerList!
|
|
4569
|
-
|
|
4570
|
-
"""To fetch a PayloadLog"""
|
|
4571
|
-
payloadLog(id: String!): PayloadLog!
|
|
4572
|
-
|
|
4573
|
-
"""To fetch multiple PayloadLogs"""
|
|
4574
|
-
payloadLogs(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PayloadLogList!
|
|
4575
|
-
|
|
4576
|
-
"""To get list of activity instance that a user can pick"""
|
|
4577
|
-
pickableActivityList(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ActivityInstanceList!
|
|
4578
|
-
|
|
4579
|
-
"""To fetch a PlayGroup"""
|
|
4580
|
-
playGroup(id: String!): PlayGroup
|
|
4581
|
-
|
|
4582
|
-
"""To fetch multiple PlayGroups"""
|
|
4583
|
-
playGroups(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PlayGroupList!
|
|
4584
|
-
|
|
4585
|
-
"""To fetch privilege"""
|
|
4586
|
-
privilege(category: String!, name: String!): Privilege!
|
|
4587
|
-
|
|
4588
|
-
"""To fetch multiple privileges"""
|
|
4589
|
-
privileges(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PrivilegeList!
|
|
4590
|
-
|
|
4591
|
-
"""To query data in S3 using Amazon Athena SDK"""
|
|
4592
|
-
queryFromAthena(queryData: Object!): Any!
|
|
4593
|
-
|
|
4594
|
-
"""To fetch role"""
|
|
4595
|
-
role(name: String!): Role!
|
|
4596
|
-
|
|
4597
|
-
"""To fetch Menus by role"""
|
|
4598
|
-
roleMenus(roleId: String!): MenuList!
|
|
4599
|
-
|
|
4600
|
-
"""To fetch priviliges of a role"""
|
|
4601
|
-
rolePrivileges(roleId: String!): [RolePrivilege!]!
|
|
4602
|
-
|
|
4603
|
-
"""To fetch multiple users"""
|
|
4604
|
-
roles(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): RoleList!
|
|
4605
|
-
|
|
4606
|
-
"""To fetch a scenario"""
|
|
4607
|
-
scenario(id: String!): Scenario!
|
|
4608
|
-
|
|
4609
|
-
"""To fetch a scenario instance"""
|
|
4610
|
-
scenarioInstance(instanceName: String!): ScenarioInstance!
|
|
4611
|
-
|
|
4612
|
-
"""To fetch multiple scenario instances"""
|
|
4613
|
-
scenarioInstances(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ScenarioInstanceList!
|
|
4614
|
-
|
|
4615
|
-
"""To fetch multiple scenarios"""
|
|
4616
|
-
scenarios(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ScenarioList!
|
|
4617
|
-
searchCustomers(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DomainList!
|
|
4618
|
-
|
|
4619
|
-
"""To fetch a Setting"""
|
|
4620
|
-
setting(name: String!, partnerDomainId: String): Setting!
|
|
4621
|
-
|
|
4622
|
-
"""To fetch multiple Settings"""
|
|
4623
|
-
settings(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): SettingList!
|
|
4624
|
-
|
|
4625
|
-
"""To fetch the list of activities I can start"""
|
|
4626
|
-
startableActivities(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ActivityList!
|
|
4627
|
-
|
|
4628
|
-
"""To fetch a step"""
|
|
4629
|
-
step(name: String!): Step!
|
|
4630
|
-
|
|
4631
|
-
"""To fetch multiple steps"""
|
|
4632
|
-
steps(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): StepList!
|
|
4633
|
-
|
|
4634
|
-
"""To fetch the list of activities that I can report on"""
|
|
4635
|
-
supervisableActivities(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ActivityList!
|
|
4636
|
-
|
|
4637
|
-
"""To fetch a task-type"""
|
|
4638
|
-
taskType(name: String!): TaskType!
|
|
4639
|
-
|
|
4640
|
-
"""To fetch multiple task-type"""
|
|
4641
|
-
taskTypes: TaskTypeList!
|
|
4642
|
-
|
|
4643
|
-
"""To fetch the connector from a task-type"""
|
|
4644
|
-
taskTypesByConnection(connectionName: String!): TaskTypeList!
|
|
4645
|
-
|
|
4646
|
-
"""To fetch multiple Terminologies"""
|
|
4647
|
-
terminologies(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): TerminologyList!
|
|
4648
|
-
|
|
4649
|
-
"""To fetch a Terminology"""
|
|
4650
|
-
terminology(id: String!): Terminology!
|
|
4651
|
-
|
|
4652
|
-
"""To fetch a Theme"""
|
|
4653
|
-
theme(id: String!): Theme
|
|
4654
|
-
|
|
4655
|
-
"""To fetch multiple Themes"""
|
|
4656
|
-
themes(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ThemeList!
|
|
4657
|
-
|
|
4658
|
-
"""To fetch my own ActivityThreads"""
|
|
4659
|
-
todoList(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ActivityThreadList!
|
|
4660
|
-
|
|
4661
|
-
"""To fetch user"""
|
|
4662
|
-
user(email: String!): User!
|
|
4663
|
-
|
|
4664
|
-
"""To fetch Menus by role"""
|
|
4665
|
-
userMenus: [Menu!]!
|
|
4666
|
-
|
|
4667
|
-
"""To fetch roles of a user"""
|
|
4668
|
-
userRoles(userId: String!): [UserRole!]!
|
|
4669
|
-
|
|
4670
|
-
"""To fetch multiple users"""
|
|
4671
|
-
users(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): UserList!
|
|
4672
|
-
vendors: [Domain!]!
|
|
4673
|
-
|
|
4674
|
-
"""To fetch multiple WorkShifts"""
|
|
4675
|
-
workShifts(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): WorkShiftList!
|
|
4676
|
-
}
|
|
4677
|
-
|
|
4678
|
-
type RecipientItem {
|
|
4679
|
-
recipient: OrgMemberTarget
|
|
4680
|
-
type: OrgMemberTargetType
|
|
4681
|
-
value: String
|
|
4682
|
-
}
|
|
4683
|
-
|
|
4684
|
-
type Role {
|
|
4685
|
-
createdAt: Timestamp
|
|
4686
|
-
creator: User
|
|
4687
|
-
description: String
|
|
4688
|
-
domain: Domain!
|
|
4689
|
-
id: ID!
|
|
4690
|
-
name: String!
|
|
4691
|
-
privileges: [Privilege!]
|
|
4692
|
-
updatedAt: Timestamp
|
|
4693
|
-
updater: User
|
|
4694
|
-
users: [User!]
|
|
4695
|
-
}
|
|
4696
|
-
|
|
4697
|
-
type RoleList {
|
|
4698
|
-
items: [Role!]
|
|
4699
|
-
total: Int
|
|
4700
|
-
}
|
|
4701
|
-
|
|
4702
|
-
input RolePatch {
|
|
4703
|
-
cuFlag: String
|
|
4704
|
-
description: String
|
|
4705
|
-
id: String
|
|
4706
|
-
name: String
|
|
4707
|
-
privileges: [ObjectRef!]
|
|
4708
|
-
users: [ObjectRef!]
|
|
4709
|
-
}
|
|
4710
|
-
|
|
4711
|
-
type RolePrivilege {
|
|
4712
|
-
assigned: Boolean
|
|
4713
|
-
category: String
|
|
4714
|
-
description: String
|
|
4715
|
-
id: String
|
|
4716
|
-
name: String
|
|
4717
|
-
}
|
|
4718
|
-
|
|
4719
|
-
type Scenario {
|
|
4720
|
-
"""[will be deprecated] automatically be started when this server start"""
|
|
4721
|
-
active: Boolean
|
|
4722
|
-
createdAt: Timestamp
|
|
4723
|
-
creator: User
|
|
4724
|
-
description: String
|
|
4725
|
-
domain: Domain
|
|
4726
|
-
id: ID!
|
|
4727
|
-
instances: [ScenarioInstance!]
|
|
4728
|
-
name: String!
|
|
4729
|
-
|
|
4730
|
-
"""accessible and executable system-wide"""
|
|
4731
|
-
public: Boolean
|
|
4732
|
-
schedule: String
|
|
4733
|
-
scheduleId: String
|
|
4734
|
-
state: String
|
|
4735
|
-
steps: [Step!]
|
|
4736
|
-
timezone: String
|
|
4737
|
-
type: String
|
|
4738
|
-
updatedAt: Timestamp
|
|
4739
|
-
updater: User
|
|
4740
|
-
}
|
|
4741
|
-
|
|
4742
|
-
type ScenarioInstance {
|
|
4743
|
-
data: Object
|
|
4744
|
-
domain: Domain
|
|
4745
|
-
instanceName: String
|
|
4746
|
-
message: String
|
|
4747
|
-
progress: ScenarioInstanceProgress
|
|
4748
|
-
result: Object
|
|
4749
|
-
root: ScenarioInstance
|
|
4750
|
-
scenarioName: String
|
|
4751
|
-
state: String
|
|
4752
|
-
timestamp: Timestamp
|
|
4753
|
-
variables: Object
|
|
4754
|
-
}
|
|
4755
|
-
|
|
4756
|
-
type ScenarioInstanceList {
|
|
4757
|
-
items: [ScenarioInstance!]!
|
|
4758
|
-
total: Int!
|
|
4759
|
-
}
|
|
4760
|
-
|
|
4761
|
-
type ScenarioInstanceProgress {
|
|
4762
|
-
rate: Int!
|
|
4763
|
-
rounds: Int!
|
|
4764
|
-
step: Int!
|
|
4765
|
-
steps: Int!
|
|
4766
|
-
}
|
|
4767
|
-
|
|
4768
|
-
type ScenarioInstanceState {
|
|
4769
|
-
data: Object
|
|
4770
|
-
domain: Domain
|
|
4771
|
-
instanceName: String
|
|
4772
|
-
message: String
|
|
4773
|
-
progress: ScenarioInstanceProgress
|
|
4774
|
-
scenarioName: String
|
|
4775
|
-
state: ScenarioInstanceStatus
|
|
4776
|
-
timestamp: Timestamp
|
|
4777
|
-
variables: Object
|
|
4778
|
-
}
|
|
4779
|
-
|
|
4780
|
-
"""state enumeration of a scenario-instance"""
|
|
4781
|
-
enum ScenarioInstanceStatus {
|
|
4782
|
-
HALTED
|
|
4783
|
-
READY
|
|
4784
|
-
STARTED
|
|
4785
|
-
STOPPED
|
|
4786
|
-
UNLOADED
|
|
4787
|
-
}
|
|
4788
|
-
|
|
4789
|
-
type ScenarioList {
|
|
4790
|
-
items: [Scenario!]!
|
|
4791
|
-
total: Int!
|
|
4792
|
-
}
|
|
4793
|
-
|
|
4794
|
-
input ScenarioPatch {
|
|
4795
|
-
active: Boolean
|
|
4796
|
-
cuFlag: String
|
|
4797
|
-
description: String
|
|
4798
|
-
id: ID
|
|
4799
|
-
name: String
|
|
4800
|
-
schedule: String
|
|
4801
|
-
steps: [StepPatch!]
|
|
4802
|
-
timezone: String
|
|
4803
|
-
type: String
|
|
4804
|
-
}
|
|
4805
|
-
|
|
4806
|
-
type ScenarioQueueState {
|
|
4807
|
-
domain: Domain!
|
|
4808
|
-
queue: [PendingObject!]!
|
|
4809
|
-
}
|
|
4810
|
-
|
|
4811
|
-
"""Entity for Setting"""
|
|
4812
|
-
type Setting {
|
|
4813
|
-
category: String!
|
|
4814
|
-
createdAt: Timestamp
|
|
4815
|
-
creator: User
|
|
4816
|
-
description: String
|
|
4817
|
-
domain: Domain
|
|
4818
|
-
id: ID!
|
|
4819
|
-
name: String!
|
|
4820
|
-
updatedAt: Timestamp
|
|
4821
|
-
updater: User
|
|
4822
|
-
value: String
|
|
4823
|
-
}
|
|
4824
|
-
|
|
4825
|
-
type SettingList {
|
|
4826
|
-
items: [Setting!]!
|
|
4827
|
-
total: Int!
|
|
4828
|
-
}
|
|
4829
|
-
|
|
4830
|
-
input SettingPatch {
|
|
4831
|
-
category: String
|
|
4832
|
-
cuFlag: String
|
|
4833
|
-
description: String
|
|
4834
|
-
id: ID
|
|
4835
|
-
name: String
|
|
4836
|
-
value: String
|
|
4837
|
-
}
|
|
4838
|
-
|
|
4839
|
-
input Sorting {
|
|
4840
|
-
"""
|
|
4841
|
-
Set to true if descending sort. Default is "false"
|
|
4842
|
-
"""
|
|
4843
|
-
desc: Boolean
|
|
4844
|
-
|
|
4845
|
-
"""Field name to sort by"""
|
|
4846
|
-
name: String!
|
|
4847
|
-
}
|
|
4848
|
-
|
|
4849
|
-
type Step {
|
|
4850
|
-
connection: String
|
|
4851
|
-
createdAt: Timestamp
|
|
4852
|
-
creator: User
|
|
4853
|
-
description: String
|
|
4854
|
-
domain: Domain
|
|
4855
|
-
id: ID!
|
|
4856
|
-
log: Boolean
|
|
4857
|
-
name: String!
|
|
4858
|
-
params: String
|
|
4859
|
-
|
|
4860
|
-
"""
|
|
4861
|
-
a boolean attribute indicating the inclusion status of an element in the result
|
|
4862
|
-
"""
|
|
4863
|
-
result: Boolean
|
|
4864
|
-
scenario: Scenario
|
|
4865
|
-
sequence: Float
|
|
4866
|
-
skip: Boolean
|
|
4867
|
-
task: String
|
|
4868
|
-
updatedAt: Timestamp
|
|
4869
|
-
updater: User
|
|
4870
|
-
}
|
|
4871
|
-
|
|
4872
|
-
type StepList {
|
|
4873
|
-
items: [Step!]!
|
|
4874
|
-
total: Int!
|
|
4875
|
-
}
|
|
4876
|
-
|
|
4877
|
-
input StepPatch {
|
|
4878
|
-
connection: String
|
|
4879
|
-
cuFlag: String
|
|
4880
|
-
description: String
|
|
4881
|
-
id: ID
|
|
4882
|
-
log: Boolean
|
|
4883
|
-
name: String
|
|
4884
|
-
params: String
|
|
4885
|
-
result: Boolean
|
|
4886
|
-
sequence: Int
|
|
4887
|
-
skip: Boolean
|
|
4888
|
-
task: String
|
|
4889
|
-
}
|
|
4890
|
-
|
|
4891
|
-
type Subscription {
|
|
4892
|
-
activityApproval: ActivityApproval!
|
|
4893
|
-
activityInstance: ActivityInstance!
|
|
4894
|
-
activityThread: ActivityThread!
|
|
4895
|
-
board(id: String!): Board!
|
|
4896
|
-
connectionLog(level: String): Log!
|
|
4897
|
-
connectionState(name: String): ConnectionState!
|
|
4898
|
-
data(tag: String!): Data!
|
|
4899
|
-
dataOoc: DataOoc!
|
|
4900
|
-
notification(subjects: [String!]): Notification!
|
|
4901
|
-
playGroup(id: String!): PlayGroup!
|
|
4902
|
-
scenarioInstanceLog(instanceName: String, level: String, scenarioName: String): Log!
|
|
4903
|
-
scenarioInstanceState(instanceName: String, scenarioName: String): ScenarioInstanceState!
|
|
4904
|
-
scenarioQueueState: ScenarioQueueState!
|
|
4905
|
-
}
|
|
4906
|
-
|
|
4907
|
-
type TaskType {
|
|
4908
|
-
connectorFree: Boolean
|
|
4909
|
-
description: String
|
|
4910
|
-
help: String
|
|
4911
|
-
name: String!
|
|
4912
|
-
parameterSpec: [PropertySpec!]
|
|
4913
|
-
}
|
|
4914
|
-
|
|
4915
|
-
type TaskTypeList {
|
|
4916
|
-
items: [TaskType!]!
|
|
4917
|
-
total: Int!
|
|
4918
|
-
}
|
|
4919
|
-
|
|
4920
|
-
"""Entity for Terminology"""
|
|
4921
|
-
type Terminology {
|
|
4922
|
-
category: String!
|
|
4923
|
-
createdAt: Timestamp
|
|
4924
|
-
description: String
|
|
4925
|
-
display: String!
|
|
4926
|
-
domain: Domain
|
|
4927
|
-
id: ID!
|
|
4928
|
-
locale: String!
|
|
4929
|
-
name: String!
|
|
4930
|
-
updatedAt: Timestamp
|
|
4931
|
-
}
|
|
4932
|
-
|
|
4933
|
-
type TerminologyList {
|
|
4934
|
-
items: [Terminology!]!
|
|
4935
|
-
total: Int!
|
|
4936
|
-
}
|
|
4937
|
-
|
|
4938
|
-
input TerminologyPatch {
|
|
4939
|
-
category: String!
|
|
4940
|
-
cuFlag: String
|
|
4941
|
-
description: String
|
|
4942
|
-
display: String!
|
|
4943
|
-
id: ID
|
|
4944
|
-
locale: String!
|
|
4945
|
-
name: String
|
|
4946
|
-
}
|
|
4947
|
-
|
|
4948
|
-
"""Entity for Theme"""
|
|
4949
|
-
type Theme {
|
|
4950
|
-
createdAt: Timestamp
|
|
4951
|
-
creator: User
|
|
4952
|
-
deletedAt: Timestamp
|
|
4953
|
-
description: String
|
|
4954
|
-
domain: Domain
|
|
4955
|
-
id: ID!
|
|
4956
|
-
name: String
|
|
4957
|
-
type: String
|
|
4958
|
-
updatedAt: Timestamp
|
|
4959
|
-
updater: User
|
|
4960
|
-
value: Object
|
|
4961
|
-
}
|
|
4962
|
-
|
|
4963
|
-
type ThemeList {
|
|
4964
|
-
items: [Theme!]!
|
|
4965
|
-
total: Int!
|
|
4966
|
-
}
|
|
4967
|
-
|
|
4968
|
-
input ThemePatch {
|
|
4969
|
-
cuFlag: String
|
|
4970
|
-
description: String
|
|
4971
|
-
id: ID
|
|
4972
|
-
name: String
|
|
4973
|
-
type: String
|
|
4974
|
-
value: Object
|
|
4975
|
-
}
|
|
4976
|
-
|
|
4977
|
-
"""
|
|
4978
|
-
The javascript `Date` as integer. Type represents date and time as number of milliseconds from start of UNIX epoch.
|
|
4979
|
-
"""
|
|
4980
|
-
scalar Timestamp
|
|
4981
|
-
|
|
4982
|
-
"""The `Upload` scalar type represents a file upload."""
|
|
4983
|
-
scalar Upload
|
|
4984
|
-
|
|
4985
|
-
type UploadURL {
|
|
4986
|
-
fields: Any!
|
|
4987
|
-
url: String!
|
|
4988
|
-
}
|
|
4989
|
-
|
|
4990
|
-
type User {
|
|
4991
|
-
createdAt: Timestamp
|
|
4992
|
-
creator: User
|
|
4993
|
-
description: String
|
|
4994
|
-
domains: [Domain!]!
|
|
4995
|
-
email: String!
|
|
4996
|
-
id: ID!
|
|
4997
|
-
locale: String
|
|
4998
|
-
name: String!
|
|
4999
|
-
owner: Boolean
|
|
5000
|
-
reference: String
|
|
5001
|
-
roles: [Role!]!
|
|
5002
|
-
status: String!
|
|
5003
|
-
updatedAt: Timestamp
|
|
5004
|
-
updater: User
|
|
5005
|
-
userType: String
|
|
5006
|
-
}
|
|
5007
|
-
|
|
5008
|
-
type UserList {
|
|
5009
|
-
items: [User!]
|
|
5010
|
-
total: Int
|
|
5011
|
-
}
|
|
5012
|
-
|
|
5013
|
-
input UserPatch {
|
|
5014
|
-
cuFlag: String
|
|
5015
|
-
description: String
|
|
5016
|
-
domains: [ObjectRef!]
|
|
5017
|
-
email: String
|
|
5018
|
-
id: ID
|
|
5019
|
-
name: String
|
|
5020
|
-
password: String
|
|
5021
|
-
roles: [ObjectRef!]
|
|
5022
|
-
status: String
|
|
5023
|
-
userType: String
|
|
5024
|
-
}
|
|
5025
|
-
|
|
5026
|
-
type UserRole {
|
|
5027
|
-
assigned: Boolean
|
|
5028
|
-
description: String
|
|
5029
|
-
id: String
|
|
5030
|
-
name: String
|
|
5031
|
-
}
|
|
5032
|
-
|
|
5033
|
-
"""Entity for WorkShift"""
|
|
5034
|
-
type WorkShift {
|
|
5035
|
-
createdAt: Timestamp
|
|
5036
|
-
creator: User
|
|
5037
|
-
description: String
|
|
5038
|
-
domain: Domain
|
|
5039
|
-
fromDate: Float
|
|
5040
|
-
fromTime: String
|
|
5041
|
-
id: ID!
|
|
5042
|
-
name: String!
|
|
5043
|
-
toDate: Float
|
|
5044
|
-
toTime: String
|
|
5045
|
-
updatedAt: Timestamp
|
|
5046
|
-
updater: User
|
|
5047
|
-
}
|
|
5048
|
-
|
|
5049
|
-
type WorkShiftInfo {
|
|
5050
|
-
dateRange: [Timestamp!]
|
|
5051
|
-
shiftRange: [Timestamp!]
|
|
5052
|
-
workDate: String
|
|
5053
|
-
workShift: String
|
|
5054
|
-
}
|
|
5055
|
-
|
|
5056
|
-
type WorkShiftList {
|
|
5057
|
-
items: [WorkShift!]!
|
|
5058
|
-
total: Int!
|
|
5059
|
-
}
|
|
5060
|
-
|
|
5061
|
-
input WorkShiftPatch {
|
|
5062
|
-
description: String
|
|
5063
|
-
fromDate: Float!
|
|
5064
|
-
fromTime: String!
|
|
5065
|
-
name: String!
|
|
5066
|
-
toDate: Float!
|
|
5067
|
-
toTime: String!
|
|
5068
|
-
}
|
|
5069
|
-
|
|
5070
|
-
input i18nCompletionInput {
|
|
5071
|
-
json: String!
|
|
5072
|
-
}
|
|
5073
|
-
|
|
5074
|
-
type i18nCompletionOutput {
|
|
5075
|
-
message: String
|
|
5076
|
-
}
|