@things-factory/reference-app 6.1.83 → 6.1.85
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/db.sqlite +0 -0
- package/logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json +6 -6
- package/logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json +3 -3
- package/logs/application-2023-08-06-10.log +4 -0
- package/logs/application-2023-08-06-19.log +1 -0
- package/package.json +39 -39
- package/schema.gql +1854 -1466
- package/logs/application-2023-06-12-07.log +0 -7
- package/logs/application-2023-06-12-16.log +0 -1
- /package/logs/{connections-2023-06-12-07.log → connections-2023-08-06-10.log} +0 -0
- /package/{things-factory.config.ts → things-factory.config.js} +0 -0
package/schema.gql
CHANGED
|
@@ -3,14 +3,436 @@
|
|
|
3
3
|
# !!! DO NOT MODIFY THIS FILE BY YOURSELF !!!
|
|
4
4
|
# -----------------------------------------------
|
|
5
5
|
|
|
6
|
+
input APIDocCompletionInput {
|
|
7
|
+
code: String!
|
|
8
|
+
language: String
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
type APIDocCompletionOutput {
|
|
12
|
+
message: String
|
|
13
|
+
}
|
|
14
|
+
|
|
6
15
|
type AccessToken {
|
|
7
16
|
accesToken: String!
|
|
8
17
|
refreshToken: String!
|
|
9
18
|
}
|
|
10
19
|
|
|
11
|
-
"""
|
|
12
|
-
|
|
13
|
-
"""
|
|
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)"""
|
|
14
436
|
scalar Any
|
|
15
437
|
|
|
16
438
|
type AppBinding {
|
|
@@ -109,9 +531,7 @@ input ApplicationPatch {
|
|
|
109
531
|
webhook: String
|
|
110
532
|
}
|
|
111
533
|
|
|
112
|
-
"""
|
|
113
|
-
state enumeration of a application
|
|
114
|
-
"""
|
|
534
|
+
"""state enumeration of a application"""
|
|
115
535
|
enum ApplicationType {
|
|
116
536
|
MMS
|
|
117
537
|
OTHERS
|
|
@@ -121,9 +541,7 @@ enum ApplicationType {
|
|
|
121
541
|
XILNEX
|
|
122
542
|
}
|
|
123
543
|
|
|
124
|
-
"""
|
|
125
|
-
Entity for ApprovalLine
|
|
126
|
-
"""
|
|
544
|
+
"""Entity for ApprovalLine"""
|
|
127
545
|
type ApprovalLine {
|
|
128
546
|
createdAt: Timestamp
|
|
129
547
|
creator: User
|
|
@@ -140,9 +558,7 @@ type ApprovalLine {
|
|
|
140
558
|
updater: User
|
|
141
559
|
}
|
|
142
560
|
|
|
143
|
-
"""
|
|
144
|
-
Entity for approval line item
|
|
145
|
-
"""
|
|
561
|
+
"""Entity for approval line item"""
|
|
146
562
|
type ApprovalLineItem {
|
|
147
563
|
approver: OrgMemberTarget
|
|
148
564
|
type: String
|
|
@@ -157,25 +573,17 @@ type ApprovalLineList {
|
|
|
157
573
|
type ApprovalLineOwner {
|
|
158
574
|
controlNo: String
|
|
159
575
|
|
|
160
|
-
"""
|
|
161
|
-
Field description
|
|
162
|
-
"""
|
|
576
|
+
"""Field description"""
|
|
163
577
|
description: String
|
|
164
578
|
|
|
165
|
-
"""
|
|
166
|
-
Field id
|
|
167
|
-
"""
|
|
579
|
+
"""Field id"""
|
|
168
580
|
id: ID!
|
|
169
581
|
|
|
170
|
-
"""
|
|
171
|
-
Field name
|
|
172
|
-
"""
|
|
582
|
+
"""Field name"""
|
|
173
583
|
name: String
|
|
174
584
|
}
|
|
175
585
|
|
|
176
|
-
"""
|
|
177
|
-
type enumeration of a approvalLineOwner
|
|
178
|
-
"""
|
|
586
|
+
"""type enumeration of a approvalLineOwner"""
|
|
179
587
|
enum ApprovalLineOwnerType {
|
|
180
588
|
Common
|
|
181
589
|
Employee
|
|
@@ -191,23 +599,10 @@ input ApprovalLinePatch {
|
|
|
191
599
|
ownerType: ApprovalLineOwnerType
|
|
192
600
|
}
|
|
193
601
|
|
|
194
|
-
type
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
Field description
|
|
199
|
-
"""
|
|
200
|
-
description: String
|
|
201
|
-
|
|
202
|
-
"""
|
|
203
|
-
Field id
|
|
204
|
-
"""
|
|
205
|
-
id: ID!
|
|
206
|
-
|
|
207
|
-
"""
|
|
208
|
-
Field name
|
|
209
|
-
"""
|
|
210
|
-
name: String
|
|
602
|
+
type AssigneeItem {
|
|
603
|
+
assignee: OrgMemberTarget
|
|
604
|
+
type: OrgMemberTargetType
|
|
605
|
+
value: String
|
|
211
606
|
}
|
|
212
607
|
|
|
213
608
|
type Attachment {
|
|
@@ -245,6 +640,61 @@ input AttachmentPatch {
|
|
|
245
640
|
refType: String
|
|
246
641
|
}
|
|
247
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
|
+
|
|
248
698
|
type BizOption {
|
|
249
699
|
bizOptionDetails: BizOptionDetail
|
|
250
700
|
bizplace: Bizplace
|
|
@@ -331,9 +781,7 @@ input BizplacePatch {
|
|
|
331
781
|
status: String
|
|
332
782
|
}
|
|
333
783
|
|
|
334
|
-
"""
|
|
335
|
-
Entity for Visualization Board
|
|
336
|
-
"""
|
|
784
|
+
"""Entity for Visualization Board"""
|
|
337
785
|
type Board {
|
|
338
786
|
createdAt: Timestamp
|
|
339
787
|
creator: User
|
|
@@ -369,9 +817,62 @@ type BoardSetting {
|
|
|
369
817
|
value: String!
|
|
370
818
|
}
|
|
371
819
|
|
|
372
|
-
"""
|
|
373
|
-
|
|
374
|
-
|
|
820
|
+
"""Entity for BoardTemplate"""
|
|
821
|
+
type BoardTemplate {
|
|
822
|
+
createdAt: Timestamp
|
|
823
|
+
creator: User
|
|
824
|
+
description: String
|
|
825
|
+
domain: Domain
|
|
826
|
+
id: ID!
|
|
827
|
+
model: String
|
|
828
|
+
name: String
|
|
829
|
+
state: String
|
|
830
|
+
thumbnail: String
|
|
831
|
+
updatedAt: Timestamp
|
|
832
|
+
updater: User
|
|
833
|
+
version: Float
|
|
834
|
+
}
|
|
835
|
+
|
|
836
|
+
type BoardTemplateList {
|
|
837
|
+
items: [BoardTemplate!]!
|
|
838
|
+
total: Int!
|
|
839
|
+
}
|
|
840
|
+
|
|
841
|
+
input BoardTemplatePatch {
|
|
842
|
+
cuFlag: String
|
|
843
|
+
description: String
|
|
844
|
+
id: ID
|
|
845
|
+
model: String!
|
|
846
|
+
name: String
|
|
847
|
+
state: BoardTemplateStatus
|
|
848
|
+
thumbnail: String
|
|
849
|
+
}
|
|
850
|
+
|
|
851
|
+
"""state enumeration of a boardTemplate"""
|
|
852
|
+
enum BoardTemplateStatus {
|
|
853
|
+
DRAFT
|
|
854
|
+
RELEASED
|
|
855
|
+
}
|
|
856
|
+
|
|
857
|
+
input ChatCompletionInput {
|
|
858
|
+
content: String!
|
|
859
|
+
}
|
|
860
|
+
|
|
861
|
+
type ChatCompletionOutput {
|
|
862
|
+
message: String
|
|
863
|
+
}
|
|
864
|
+
|
|
865
|
+
input CodeDecipherInput {
|
|
866
|
+
code: String!
|
|
867
|
+
language: String
|
|
868
|
+
system: String
|
|
869
|
+
}
|
|
870
|
+
|
|
871
|
+
type CodeDecipherOutput {
|
|
872
|
+
message: String
|
|
873
|
+
}
|
|
874
|
+
|
|
875
|
+
"""Entity for CommonCode"""
|
|
375
876
|
type CommonCode {
|
|
376
877
|
createdAt: Timestamp
|
|
377
878
|
creator: User
|
|
@@ -384,9 +885,7 @@ type CommonCode {
|
|
|
384
885
|
updater: User
|
|
385
886
|
}
|
|
386
887
|
|
|
387
|
-
"""
|
|
388
|
-
Entity for CommonCodeDetail
|
|
389
|
-
"""
|
|
888
|
+
"""Entity for CommonCodeDetail"""
|
|
390
889
|
type CommonCodeDetail {
|
|
391
890
|
commonCode: CommonCode
|
|
392
891
|
createdAt: Timestamp
|
|
@@ -518,9 +1017,7 @@ type ConnectorType {
|
|
|
518
1017
|
taskPrefixes: [String!]
|
|
519
1018
|
}
|
|
520
1019
|
|
|
521
|
-
"""
|
|
522
|
-
Entity for Contact
|
|
523
|
-
"""
|
|
1020
|
+
"""Entity for Contact"""
|
|
524
1021
|
type Contact {
|
|
525
1022
|
address: String
|
|
526
1023
|
company: String
|
|
@@ -625,25 +1122,17 @@ input ContactPointPatch {
|
|
|
625
1122
|
}
|
|
626
1123
|
|
|
627
1124
|
type Data {
|
|
628
|
-
"""
|
|
629
|
-
Data delivered by subscription
|
|
630
|
-
"""
|
|
1125
|
+
"""Data delivered by subscription"""
|
|
631
1126
|
data: Object
|
|
632
1127
|
|
|
633
|
-
"""
|
|
634
|
-
The domain where the data originated
|
|
635
|
-
"""
|
|
1128
|
+
"""The domain where the data originated"""
|
|
636
1129
|
domain: Domain
|
|
637
1130
|
|
|
638
|
-
"""
|
|
639
|
-
Tag name attached to data
|
|
640
|
-
"""
|
|
1131
|
+
"""Tag name attached to data"""
|
|
641
1132
|
tag: String!
|
|
642
1133
|
}
|
|
643
1134
|
|
|
644
|
-
"""
|
|
645
|
-
Entity for DataArchive
|
|
646
|
-
"""
|
|
1135
|
+
"""Entity for DataArchive"""
|
|
647
1136
|
type DataArchive {
|
|
648
1137
|
createdAt: Timestamp
|
|
649
1138
|
creator: User
|
|
@@ -671,9 +1160,7 @@ input DataArchivePatch {
|
|
|
671
1160
|
type: String
|
|
672
1161
|
}
|
|
673
1162
|
|
|
674
|
-
"""
|
|
675
|
-
Entity for DataItem
|
|
676
|
-
"""
|
|
1163
|
+
"""Entity for DataItem"""
|
|
677
1164
|
type DataItem {
|
|
678
1165
|
active: Boolean
|
|
679
1166
|
description: String
|
|
@@ -682,6 +1169,11 @@ type DataItem {
|
|
|
682
1169
|
options: Object
|
|
683
1170
|
quota: Int
|
|
684
1171
|
spec: Object
|
|
1172
|
+
|
|
1173
|
+
"""
|
|
1174
|
+
The grouping logic for data summarization in the given field during periodic task deadlines.
|
|
1175
|
+
"""
|
|
1176
|
+
stat: String
|
|
685
1177
|
tag: String
|
|
686
1178
|
type: String
|
|
687
1179
|
unit: String
|
|
@@ -695,25 +1187,28 @@ input DataItemPatch {
|
|
|
695
1187
|
options: Object
|
|
696
1188
|
quota: Int
|
|
697
1189
|
spec: Object
|
|
1190
|
+
|
|
1191
|
+
"""
|
|
1192
|
+
The grouping logic for data summarization in the given field during periodic task deadlines.
|
|
1193
|
+
"""
|
|
1194
|
+
stat: String
|
|
698
1195
|
tag: String
|
|
699
1196
|
type: DataItemType
|
|
700
1197
|
unit: String
|
|
701
1198
|
}
|
|
702
1199
|
|
|
703
|
-
"""
|
|
704
|
-
type enumeration of a data-item
|
|
705
|
-
"""
|
|
1200
|
+
"""type enumeration of a data-item"""
|
|
706
1201
|
enum DataItemType {
|
|
707
1202
|
boolean
|
|
1203
|
+
date
|
|
1204
|
+
datetime
|
|
708
1205
|
file
|
|
709
1206
|
number
|
|
710
1207
|
select
|
|
711
1208
|
text
|
|
712
1209
|
}
|
|
713
1210
|
|
|
714
|
-
"""
|
|
715
|
-
Entity for DataKeyItem
|
|
716
|
-
"""
|
|
1211
|
+
"""Entity for DataKeyItem"""
|
|
717
1212
|
type DataKeyItem {
|
|
718
1213
|
dataKey: String
|
|
719
1214
|
description: String
|
|
@@ -728,9 +1223,7 @@ input DataKeyItemPatch {
|
|
|
728
1223
|
tKey: String
|
|
729
1224
|
}
|
|
730
1225
|
|
|
731
|
-
"""
|
|
732
|
-
Entity for DataKeySet
|
|
733
|
-
"""
|
|
1226
|
+
"""Entity for DataKeySet"""
|
|
734
1227
|
type DataKeySet {
|
|
735
1228
|
active: Boolean
|
|
736
1229
|
createdAt: Timestamp
|
|
@@ -764,13 +1257,12 @@ input DataKeySetPatch {
|
|
|
764
1257
|
thumbnail: Upload
|
|
765
1258
|
}
|
|
766
1259
|
|
|
767
|
-
"""
|
|
768
|
-
Entity for Out of control data
|
|
769
|
-
"""
|
|
1260
|
+
"""Entity for Out of control data"""
|
|
770
1261
|
type DataOoc {
|
|
771
1262
|
collectedAt: Timestamp
|
|
772
1263
|
correctedAt: Timestamp
|
|
773
1264
|
correctiveAction: String
|
|
1265
|
+
correctiveInstruction: String
|
|
774
1266
|
corrector: User
|
|
775
1267
|
createdAt: Timestamp
|
|
776
1268
|
creator: User
|
|
@@ -793,6 +1285,8 @@ type DataOoc {
|
|
|
793
1285
|
oos: Boolean
|
|
794
1286
|
partitionKeys: Object
|
|
795
1287
|
rawData: String
|
|
1288
|
+
reviewedAt: Timestamp
|
|
1289
|
+
reviewer: User
|
|
796
1290
|
source: String
|
|
797
1291
|
state: String
|
|
798
1292
|
type: String
|
|
@@ -814,18 +1308,14 @@ input DataOocPatch {
|
|
|
814
1308
|
state: DataOocStatus
|
|
815
1309
|
}
|
|
816
1310
|
|
|
817
|
-
"""
|
|
818
|
-
Out of control data corrective action process progress status
|
|
819
|
-
"""
|
|
1311
|
+
"""Out of control data corrective action process progress status"""
|
|
820
1312
|
enum DataOocStatus {
|
|
821
1313
|
CORRECTED
|
|
822
|
-
|
|
1314
|
+
ISSUED
|
|
823
1315
|
REVIEWED
|
|
824
1316
|
}
|
|
825
1317
|
|
|
826
|
-
"""
|
|
827
|
-
Entity for DataSample
|
|
828
|
-
"""
|
|
1318
|
+
"""Entity for DataSample"""
|
|
829
1319
|
type DataSample {
|
|
830
1320
|
collectedAt: Timestamp
|
|
831
1321
|
createdAt: Timestamp
|
|
@@ -867,9 +1357,7 @@ input DataSampleMockupInfo {
|
|
|
867
1357
|
numSamples: Float
|
|
868
1358
|
}
|
|
869
1359
|
|
|
870
|
-
"""
|
|
871
|
-
Entity for DataSensor
|
|
872
|
-
"""
|
|
1360
|
+
"""Entity for DataSensor"""
|
|
873
1361
|
type DataSensor {
|
|
874
1362
|
active: Boolean
|
|
875
1363
|
appliance: Appliance
|
|
@@ -913,11 +1401,15 @@ input DataSensorPatch {
|
|
|
913
1401
|
tag: String
|
|
914
1402
|
}
|
|
915
1403
|
|
|
916
|
-
"""
|
|
917
|
-
Entity for DataSet
|
|
918
|
-
"""
|
|
1404
|
+
"""Entity for DataSet"""
|
|
919
1405
|
type DataSet {
|
|
920
1406
|
active: Boolean
|
|
1407
|
+
|
|
1408
|
+
"""Approval line for handling OOC issues for that dataset"""
|
|
1409
|
+
approvalLine: [ApprovalLineItem!]
|
|
1410
|
+
|
|
1411
|
+
"""Who to contact for OOC issues"""
|
|
1412
|
+
assignees: [AssigneeItem!]
|
|
921
1413
|
createdAt: Timestamp
|
|
922
1414
|
creator: User
|
|
923
1415
|
dataItems: [DataItem!]
|
|
@@ -925,6 +1417,8 @@ type DataSet {
|
|
|
925
1417
|
description: String
|
|
926
1418
|
domain: Domain
|
|
927
1419
|
entryBoard: Board
|
|
1420
|
+
|
|
1421
|
+
"""The person responsible for manually entering the data for that dataset"""
|
|
928
1422
|
entryRole: Role
|
|
929
1423
|
entryType: String
|
|
930
1424
|
entryView: String
|
|
@@ -941,6 +1435,12 @@ type DataSet {
|
|
|
941
1435
|
reportType: String
|
|
942
1436
|
reportView: String
|
|
943
1437
|
schedule: String
|
|
1438
|
+
scheduleId: String
|
|
1439
|
+
status: DataSetState!
|
|
1440
|
+
summaryPeriod: String
|
|
1441
|
+
summaryScheduleId: String
|
|
1442
|
+
|
|
1443
|
+
"""The final authority on issues related to that dataset."""
|
|
944
1444
|
supervisoryRole: Role
|
|
945
1445
|
timezone: String
|
|
946
1446
|
type: String
|
|
@@ -950,9 +1450,7 @@ type DataSet {
|
|
|
950
1450
|
version: Float
|
|
951
1451
|
}
|
|
952
1452
|
|
|
953
|
-
"""
|
|
954
|
-
Entity for DataSetHistory
|
|
955
|
-
"""
|
|
1453
|
+
"""Entity for DataSetHistory"""
|
|
956
1454
|
type DataSetHistory {
|
|
957
1455
|
active: Boolean
|
|
958
1456
|
createdAt: Timestamp
|
|
@@ -997,6 +1495,8 @@ type DataSetList {
|
|
|
997
1495
|
|
|
998
1496
|
input DataSetPatch {
|
|
999
1497
|
active: Boolean
|
|
1498
|
+
approvalLine: Object
|
|
1499
|
+
assignees: Object
|
|
1000
1500
|
cuFlag: String!
|
|
1001
1501
|
dataItems: [DataItemPatch!]
|
|
1002
1502
|
dataKeySet: ObjectRef
|
|
@@ -1013,12 +1513,21 @@ input DataSetPatch {
|
|
|
1013
1513
|
reportType: String
|
|
1014
1514
|
reportView: String
|
|
1015
1515
|
schedule: String
|
|
1516
|
+
summaryPeriod: String
|
|
1016
1517
|
supervisoryRole: ObjectRef
|
|
1017
1518
|
timezone: String
|
|
1018
1519
|
type: String
|
|
1019
1520
|
useCase: String
|
|
1020
1521
|
}
|
|
1021
1522
|
|
|
1523
|
+
type DataSetState {
|
|
1524
|
+
id: String!
|
|
1525
|
+
nextSchedule: Timestamp!
|
|
1526
|
+
scheduleId: String!
|
|
1527
|
+
startedAt: Timestamp!
|
|
1528
|
+
state: String!
|
|
1529
|
+
}
|
|
1530
|
+
|
|
1022
1531
|
type DataSpec {
|
|
1023
1532
|
description: String
|
|
1024
1533
|
help: String
|
|
@@ -1039,14 +1548,47 @@ type DataSpecList {
|
|
|
1039
1548
|
total: Int!
|
|
1040
1549
|
}
|
|
1041
1550
|
|
|
1042
|
-
"""
|
|
1043
|
-
|
|
1044
|
-
|
|
1551
|
+
"""Entity for DataSummary"""
|
|
1552
|
+
type DataSummary {
|
|
1553
|
+
count: Float
|
|
1554
|
+
countOoc: Float
|
|
1555
|
+
countOos: Float
|
|
1556
|
+
createdAt: Timestamp
|
|
1557
|
+
creator: User
|
|
1558
|
+
data01: Float
|
|
1559
|
+
data02: Float
|
|
1560
|
+
data03: Float
|
|
1561
|
+
data04: Float
|
|
1562
|
+
data05: Float
|
|
1563
|
+
dataItems: [DataItem!]
|
|
1564
|
+
dataSet: DataSet!
|
|
1565
|
+
dataSetVersion: Float
|
|
1566
|
+
date: String
|
|
1567
|
+
description: String
|
|
1568
|
+
domain: Domain
|
|
1569
|
+
id: ID!
|
|
1570
|
+
key01: String
|
|
1571
|
+
key02: String
|
|
1572
|
+
key03: String
|
|
1573
|
+
key04: String
|
|
1574
|
+
key05: String
|
|
1575
|
+
name: String
|
|
1576
|
+
period: String
|
|
1577
|
+
summary: Object
|
|
1578
|
+
type: String
|
|
1579
|
+
updatedAt: Timestamp
|
|
1580
|
+
updater: User
|
|
1581
|
+
}
|
|
1582
|
+
|
|
1583
|
+
type DataSummaryList {
|
|
1584
|
+
items: [DataSummary!]!
|
|
1585
|
+
total: Int!
|
|
1586
|
+
}
|
|
1587
|
+
|
|
1588
|
+
"""Date custom scalar type"""
|
|
1045
1589
|
scalar Date
|
|
1046
1590
|
|
|
1047
|
-
"""
|
|
1048
|
-
Entity for Department
|
|
1049
|
-
"""
|
|
1591
|
+
"""Entity for Department"""
|
|
1050
1592
|
type Department {
|
|
1051
1593
|
active: Boolean
|
|
1052
1594
|
children: [Department!]!
|
|
@@ -1087,17 +1629,17 @@ input DepartmentPatch {
|
|
|
1087
1629
|
state: DepartmentStatus
|
|
1088
1630
|
}
|
|
1089
1631
|
|
|
1090
|
-
"""
|
|
1091
|
-
state enumeration of a department
|
|
1092
|
-
"""
|
|
1632
|
+
"""state enumeration of a department"""
|
|
1093
1633
|
enum DepartmentStatus {
|
|
1094
1634
|
STATUS_A
|
|
1095
1635
|
STATUS_B
|
|
1096
1636
|
}
|
|
1097
1637
|
|
|
1098
1638
|
type Domain {
|
|
1639
|
+
attributes: Object
|
|
1099
1640
|
brandImage: String
|
|
1100
1641
|
brandName: String
|
|
1642
|
+
children: Domain
|
|
1101
1643
|
contentImage: String
|
|
1102
1644
|
createdAt: Timestamp
|
|
1103
1645
|
description: String
|
|
@@ -1105,7 +1647,8 @@ type Domain {
|
|
|
1105
1647
|
id: ID!
|
|
1106
1648
|
name: String!
|
|
1107
1649
|
owner: String
|
|
1108
|
-
ownerUser: User
|
|
1650
|
+
ownerUser: User
|
|
1651
|
+
parent: Domain
|
|
1109
1652
|
subdomain: String
|
|
1110
1653
|
systemFlag: Boolean
|
|
1111
1654
|
theme: String
|
|
@@ -1130,12 +1673,15 @@ type DomainList {
|
|
|
1130
1673
|
}
|
|
1131
1674
|
|
|
1132
1675
|
input DomainPatch {
|
|
1676
|
+
attributes: Object
|
|
1133
1677
|
brandImage: String
|
|
1134
1678
|
brandName: String
|
|
1135
1679
|
contentImage: String
|
|
1136
1680
|
description: String
|
|
1137
1681
|
id: String
|
|
1138
1682
|
name: String
|
|
1683
|
+
owner: String
|
|
1684
|
+
parent: ObjectRef
|
|
1139
1685
|
subdomain: String
|
|
1140
1686
|
systemFlag: Boolean
|
|
1141
1687
|
theme: String
|
|
@@ -1148,9 +1694,26 @@ input DomainUserRoleInput {
|
|
|
1148
1694
|
users: [NewUserByDomainWizardInput!]!
|
|
1149
1695
|
}
|
|
1150
1696
|
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1697
|
+
type DynamicDataSummary {
|
|
1698
|
+
count: Float
|
|
1699
|
+
countOoc: Float
|
|
1700
|
+
countOos: Float
|
|
1701
|
+
data01: Float
|
|
1702
|
+
data02: Float
|
|
1703
|
+
data03: Float
|
|
1704
|
+
data04: Float
|
|
1705
|
+
data05: Float
|
|
1706
|
+
date: String
|
|
1707
|
+
key01: String
|
|
1708
|
+
key02: String
|
|
1709
|
+
key03: String
|
|
1710
|
+
key04: String
|
|
1711
|
+
key05: String
|
|
1712
|
+
month: String
|
|
1713
|
+
period: String
|
|
1714
|
+
}
|
|
1715
|
+
|
|
1716
|
+
"""Entity for Employee"""
|
|
1154
1717
|
type Employee {
|
|
1155
1718
|
active: Boolean
|
|
1156
1719
|
address: String!
|
|
@@ -1201,18 +1764,14 @@ input EmployeePatch {
|
|
|
1201
1764
|
user: ObjectRefForUser
|
|
1202
1765
|
}
|
|
1203
1766
|
|
|
1204
|
-
"""
|
|
1205
|
-
type enumeration of a employee
|
|
1206
|
-
"""
|
|
1767
|
+
"""type enumeration of a employee"""
|
|
1207
1768
|
enum EmployeeType {
|
|
1208
1769
|
FULLTIME
|
|
1209
1770
|
PARTTIME
|
|
1210
1771
|
TEMPORARY
|
|
1211
1772
|
}
|
|
1212
1773
|
|
|
1213
|
-
"""
|
|
1214
|
-
Entity for Entity
|
|
1215
|
-
"""
|
|
1774
|
+
"""Entity for Entity"""
|
|
1216
1775
|
type Entity {
|
|
1217
1776
|
active: Boolean
|
|
1218
1777
|
association: String
|
|
@@ -1241,9 +1800,7 @@ type Entity {
|
|
|
1241
1800
|
updater: User
|
|
1242
1801
|
}
|
|
1243
1802
|
|
|
1244
|
-
"""
|
|
1245
|
-
Entity for EntityColumn
|
|
1246
|
-
"""
|
|
1803
|
+
"""Entity for EntityColumn"""
|
|
1247
1804
|
type EntityColumn {
|
|
1248
1805
|
colSize: Float
|
|
1249
1806
|
colType: String!
|
|
@@ -1292,9 +1849,7 @@ type EntityColumnList {
|
|
|
1292
1849
|
total: Int!
|
|
1293
1850
|
}
|
|
1294
1851
|
|
|
1295
|
-
"""
|
|
1296
|
-
EntityColumn of Entity
|
|
1297
|
-
"""
|
|
1852
|
+
"""EntityColumn of Entity"""
|
|
1298
1853
|
type EntityColumnMetadata {
|
|
1299
1854
|
enum: [Any!]
|
|
1300
1855
|
generatedType: String
|
|
@@ -1357,9 +1912,7 @@ type EntityList {
|
|
|
1357
1912
|
total: Int!
|
|
1358
1913
|
}
|
|
1359
1914
|
|
|
1360
|
-
"""
|
|
1361
|
-
Entity for EntityMetadata
|
|
1362
|
-
"""
|
|
1915
|
+
"""Entity for EntityMetadata"""
|
|
1363
1916
|
type EntityMetadata {
|
|
1364
1917
|
columns: [EntityColumnMetadata!]
|
|
1365
1918
|
name: String!
|
|
@@ -1389,9 +1942,7 @@ input EntityPatch {
|
|
|
1389
1942
|
titleField: String
|
|
1390
1943
|
}
|
|
1391
1944
|
|
|
1392
|
-
"""
|
|
1393
|
-
RelationType of EntityColumn
|
|
1394
|
-
"""
|
|
1945
|
+
"""RelationType of EntityColumn"""
|
|
1395
1946
|
type EntityRelationMetadata {
|
|
1396
1947
|
isManyToOne: Boolean
|
|
1397
1948
|
isOneToMany: Boolean
|
|
@@ -1408,9 +1959,7 @@ input Filter {
|
|
|
1408
1959
|
value: Any
|
|
1409
1960
|
}
|
|
1410
1961
|
|
|
1411
|
-
"""
|
|
1412
|
-
Entity for Font
|
|
1413
|
-
"""
|
|
1962
|
+
"""Entity for Font"""
|
|
1414
1963
|
type Font {
|
|
1415
1964
|
active: Boolean!
|
|
1416
1965
|
createdAt: Timestamp
|
|
@@ -1446,9 +1995,7 @@ type GrantedRole {
|
|
|
1446
1995
|
role: Role!
|
|
1447
1996
|
}
|
|
1448
1997
|
|
|
1449
|
-
"""
|
|
1450
|
-
Entity for Board Management Group
|
|
1451
|
-
"""
|
|
1998
|
+
"""Entity for Board Management Group"""
|
|
1452
1999
|
type Group {
|
|
1453
2000
|
boards: [Board!]
|
|
1454
2001
|
createdAt: Timestamp
|
|
@@ -1471,6 +2018,57 @@ input GroupPatch {
|
|
|
1471
2018
|
name: String
|
|
1472
2019
|
}
|
|
1473
2020
|
|
|
2021
|
+
input ImageCompletionInput {
|
|
2022
|
+
count: Float!
|
|
2023
|
+
description: String!
|
|
2024
|
+
size: String!
|
|
2025
|
+
}
|
|
2026
|
+
|
|
2027
|
+
type ImageCompletionOutput {
|
|
2028
|
+
images: String
|
|
2029
|
+
}
|
|
2030
|
+
|
|
2031
|
+
enum InheritedValueType {
|
|
2032
|
+
Include
|
|
2033
|
+
None
|
|
2034
|
+
Only
|
|
2035
|
+
}
|
|
2036
|
+
|
|
2037
|
+
"""Entity for InstallableActivity"""
|
|
2038
|
+
type InstallableActivity {
|
|
2039
|
+
activity: Activity
|
|
2040
|
+
activityType: String
|
|
2041
|
+
category: String
|
|
2042
|
+
description: String
|
|
2043
|
+
model: [ActivityModelItem!]
|
|
2044
|
+
|
|
2045
|
+
"""
|
|
2046
|
+
Parallel or sequential are properties as a multi-instance activity, otherwise it means a single instance.
|
|
2047
|
+
"""
|
|
2048
|
+
multiple: String
|
|
2049
|
+
name: String
|
|
2050
|
+
priority: Float
|
|
2051
|
+
|
|
2052
|
+
"""Provider information of the Activity"""
|
|
2053
|
+
provider: String
|
|
2054
|
+
|
|
2055
|
+
"""Release information of the Activity"""
|
|
2056
|
+
release: String
|
|
2057
|
+
reportSource: String
|
|
2058
|
+
reportType: String
|
|
2059
|
+
startingType: String
|
|
2060
|
+
thumbnail: String
|
|
2061
|
+
uiSource: String
|
|
2062
|
+
uiType: String
|
|
2063
|
+
viewSource: String
|
|
2064
|
+
viewType: String
|
|
2065
|
+
}
|
|
2066
|
+
|
|
2067
|
+
type InstallableActivityList {
|
|
2068
|
+
items: [InstallableActivity!]!
|
|
2069
|
+
total: Int!
|
|
2070
|
+
}
|
|
2071
|
+
|
|
1474
2072
|
type Invitation {
|
|
1475
2073
|
createdAt: Timestamp
|
|
1476
2074
|
creator: User
|
|
@@ -1488,9 +2086,7 @@ type InvitationList {
|
|
|
1488
2086
|
total: Int
|
|
1489
2087
|
}
|
|
1490
2088
|
|
|
1491
|
-
"""
|
|
1492
|
-
Entity for LiteMenu
|
|
1493
|
-
"""
|
|
2089
|
+
"""Entity for LiteMenu"""
|
|
1494
2090
|
type LiteMenu {
|
|
1495
2091
|
active: Boolean
|
|
1496
2092
|
appName: String
|
|
@@ -1528,24 +2124,16 @@ input LiteMenuPatch {
|
|
|
1528
2124
|
}
|
|
1529
2125
|
|
|
1530
2126
|
type Log {
|
|
1531
|
-
"""
|
|
1532
|
-
log level (error, warning, info, ..)
|
|
1533
|
-
"""
|
|
2127
|
+
"""log level (error, warning, info, ..)"""
|
|
1534
2128
|
level: String!
|
|
1535
2129
|
|
|
1536
|
-
"""
|
|
1537
|
-
log body message
|
|
1538
|
-
"""
|
|
2130
|
+
"""log body message"""
|
|
1539
2131
|
message: String!
|
|
1540
2132
|
|
|
1541
|
-
"""
|
|
1542
|
-
the source of the log
|
|
1543
|
-
"""
|
|
2133
|
+
"""the source of the log"""
|
|
1544
2134
|
source: Object!
|
|
1545
2135
|
|
|
1546
|
-
"""
|
|
1547
|
-
timestamp the log occurred
|
|
1548
|
-
"""
|
|
2136
|
+
"""timestamp the log occurred"""
|
|
1549
2137
|
timestamp: String!
|
|
1550
2138
|
}
|
|
1551
2139
|
|
|
@@ -1557,9 +2145,7 @@ type LoginHistory {
|
|
|
1557
2145
|
id: ID!
|
|
1558
2146
|
}
|
|
1559
2147
|
|
|
1560
|
-
"""
|
|
1561
|
-
Entity for Menu
|
|
1562
|
-
"""
|
|
2148
|
+
"""Entity for Menu"""
|
|
1563
2149
|
type Menu {
|
|
1564
2150
|
buttons: [MenuButton!]!
|
|
1565
2151
|
category: String
|
|
@@ -1598,9 +2184,7 @@ type Menu {
|
|
|
1598
2184
|
updater: User
|
|
1599
2185
|
}
|
|
1600
2186
|
|
|
1601
|
-
"""
|
|
1602
|
-
Entity for MenuButton
|
|
1603
|
-
"""
|
|
2187
|
+
"""Entity for MenuButton"""
|
|
1604
2188
|
type MenuButton {
|
|
1605
2189
|
auth: String
|
|
1606
2190
|
createdAt: Timestamp
|
|
@@ -1632,9 +2216,7 @@ input MenuButtonPatch {
|
|
|
1632
2216
|
text: String
|
|
1633
2217
|
}
|
|
1634
2218
|
|
|
1635
|
-
"""
|
|
1636
|
-
Entity for MenuColumn
|
|
1637
|
-
"""
|
|
2219
|
+
"""Entity for MenuColumn"""
|
|
1638
2220
|
type MenuColumn {
|
|
1639
2221
|
colSize: Float
|
|
1640
2222
|
colType: String
|
|
@@ -1722,9 +2304,7 @@ input MenuColumnPatch {
|
|
|
1722
2304
|
virtualField: Boolean
|
|
1723
2305
|
}
|
|
1724
2306
|
|
|
1725
|
-
"""
|
|
1726
|
-
Entity for MenuDetail
|
|
1727
|
-
"""
|
|
2307
|
+
"""Entity for MenuDetail"""
|
|
1728
2308
|
type MenuDetail {
|
|
1729
2309
|
association: String
|
|
1730
2310
|
buttons: [MenuDetailButton!]
|
|
@@ -1746,9 +2326,7 @@ type MenuDetail {
|
|
|
1746
2326
|
viewSection: String
|
|
1747
2327
|
}
|
|
1748
2328
|
|
|
1749
|
-
"""
|
|
1750
|
-
Entity for MenuDetailButton
|
|
1751
|
-
"""
|
|
2329
|
+
"""Entity for MenuDetailButton"""
|
|
1752
2330
|
type MenuDetailButton {
|
|
1753
2331
|
createdAt: Timestamp
|
|
1754
2332
|
creator: User
|
|
@@ -1778,9 +2356,7 @@ input MenuDetailButtonPatch {
|
|
|
1778
2356
|
text: String
|
|
1779
2357
|
}
|
|
1780
2358
|
|
|
1781
|
-
"""
|
|
1782
|
-
Entity for MenuDetailColumn
|
|
1783
|
-
"""
|
|
2359
|
+
"""Entity for MenuDetailColumn"""
|
|
1784
2360
|
type MenuDetailColumn {
|
|
1785
2361
|
colSize: Float
|
|
1786
2362
|
colType: String
|
|
@@ -1927,286 +2503,249 @@ input MenuPatch {
|
|
|
1927
2503
|
}
|
|
1928
2504
|
|
|
1929
2505
|
type Mutation {
|
|
1930
|
-
"""
|
|
1931
|
-
|
|
1932
|
-
|
|
2506
|
+
"""To abort a ActivityInstance"""
|
|
2507
|
+
abortActivityInstance(id: String!, reason: String): ActivityInstance!
|
|
2508
|
+
|
|
2509
|
+
"""To abort a ActivityThread"""
|
|
2510
|
+
abortActivityThread(id: String!, reason: String): ActivityThread!
|
|
2511
|
+
|
|
2512
|
+
"""To activate installable activity to Activity on given domain"""
|
|
2513
|
+
activateInstallableActivity(name: String!): Activity!
|
|
2514
|
+
|
|
2515
|
+
"""To activate user"""
|
|
1933
2516
|
activateUser(userId: String!): Boolean!
|
|
1934
2517
|
|
|
1935
|
-
"""
|
|
1936
|
-
|
|
1937
|
-
|
|
2518
|
+
"""To approve ActivityApproval"""
|
|
2519
|
+
approveActivityApproval(comment: String, id: String!): ActivityApproval
|
|
2520
|
+
|
|
2521
|
+
"""To assign a ActivityInstance"""
|
|
2522
|
+
assignActivityInstance(
|
|
2523
|
+
"""Email of assignee users"""
|
|
2524
|
+
assignees: [String!]
|
|
2525
|
+
dueAt: Timestamp
|
|
2526
|
+
id: String!
|
|
2527
|
+
reason: String
|
|
2528
|
+
): ActivityInstance!
|
|
2529
|
+
|
|
2530
|
+
"""To attach a contact on Employee"""
|
|
1938
2531
|
attachContact(contactId: String!, id: String!): Employee!
|
|
1939
2532
|
cancelInvitation(email: String!, reference: String!, type: String!): Boolean!
|
|
1940
2533
|
|
|
1941
|
-
"""
|
|
1942
|
-
To connect a connection
|
|
1943
|
-
"""
|
|
2534
|
+
"""To connect a connection"""
|
|
1944
2535
|
connectConnection(name: String!): Connection!
|
|
1945
2536
|
|
|
1946
|
-
"""
|
|
1947
|
-
To copy multiple data-archives
|
|
1948
|
-
"""
|
|
2537
|
+
"""To copy multiple data-archives"""
|
|
1949
2538
|
copyDataArchives(ids: [String!]!): [DataArchive!]!
|
|
1950
2539
|
|
|
1951
|
-
"""
|
|
1952
|
-
To copy multiple data-sets
|
|
1953
|
-
"""
|
|
2540
|
+
"""To copy multiple data-sets"""
|
|
1954
2541
|
copyDataSets(ids: [String!]!): [DataSet!]!
|
|
1955
2542
|
|
|
1956
|
-
"""
|
|
1957
|
-
To import multiple scenarios
|
|
1958
|
-
"""
|
|
2543
|
+
"""To import multiple scenarios"""
|
|
1959
2544
|
copyScenarios(ids: [String!]!): [Scenario!]!
|
|
1960
2545
|
|
|
1961
|
-
"""
|
|
1962
|
-
|
|
1963
|
-
|
|
2546
|
+
"""To create new Activity"""
|
|
2547
|
+
createActivity(activity: NewActivity!): Activity!
|
|
2548
|
+
|
|
2549
|
+
"""To create new ActivityTemplate"""
|
|
2550
|
+
createActivityTemplate(activityTemplate: NewActivityTemplate!): ActivityTemplate!
|
|
2551
|
+
|
|
2552
|
+
"""To create new appliance"""
|
|
1964
2553
|
createAppliance(appliance: NewAppliance!): Appliance!
|
|
1965
2554
|
|
|
1966
|
-
"""
|
|
1967
|
-
To create new application
|
|
1968
|
-
"""
|
|
2555
|
+
"""To create new application"""
|
|
1969
2556
|
createApplication(application: NewApplication!): Application!
|
|
1970
2557
|
|
|
1971
|
-
"""
|
|
1972
|
-
To create new ApprovalLine
|
|
1973
|
-
"""
|
|
2558
|
+
"""To create new ApprovalLine"""
|
|
1974
2559
|
createApprovalLine(approvalLine: NewApprovalLine!): ApprovalLine!
|
|
1975
2560
|
createAttachment(attachment: NewAttachment!): Attachment!
|
|
1976
2561
|
createAttachments(attachments: [NewAttachment!]!): [Attachment!]!
|
|
2562
|
+
|
|
2563
|
+
"""To create new AttributeSet"""
|
|
2564
|
+
createAttributeSet(attribute: NewAttributeSet!): AttributeSet!
|
|
1977
2565
|
createBizOption(bizOption: NewBizOption!): BizOption!
|
|
1978
2566
|
createBizOptionDetail(bizOptionDetail: NewBizOptionDetail!): BizOptionDetail!
|
|
1979
2567
|
createBizplace(bizplace: NewBizplace!): Bizplace!
|
|
1980
2568
|
|
|
1981
|
-
"""
|
|
1982
|
-
To create new Board
|
|
1983
|
-
"""
|
|
2569
|
+
"""To create new Board"""
|
|
1984
2570
|
createBoard(board: NewBoard!): Board!
|
|
1985
2571
|
|
|
1986
|
-
"""
|
|
1987
|
-
|
|
1988
|
-
|
|
2572
|
+
"""To create new BoardTemplate"""
|
|
2573
|
+
createBoardTemplate(boardTemplate: NewBoardTemplate!): BoardTemplate!
|
|
2574
|
+
|
|
2575
|
+
"""To create new CommonCode"""
|
|
1989
2576
|
createCommonCode(commonCode: NewCommonCode!): CommonCode!
|
|
1990
2577
|
|
|
1991
|
-
"""
|
|
1992
|
-
To create new CommonCodeDetail
|
|
1993
|
-
"""
|
|
2578
|
+
"""To create new CommonCodeDetail"""
|
|
1994
2579
|
createCommonCodeDetail(commonCodeDetail: NewCommonCodeDetail!): CommonCodeDetail!
|
|
1995
2580
|
createCompany(company: NewCompany!): Company!
|
|
1996
2581
|
|
|
1997
|
-
"""
|
|
1998
|
-
To create new connection
|
|
1999
|
-
"""
|
|
2582
|
+
"""To create new connection"""
|
|
2000
2583
|
createConnection(connection: NewConnection!): Connection!
|
|
2001
2584
|
|
|
2002
|
-
"""
|
|
2003
|
-
To create new Contact
|
|
2004
|
-
"""
|
|
2585
|
+
"""To create new Contact"""
|
|
2005
2586
|
createContact(contact: NewContact!): Contact!
|
|
2006
2587
|
createContactPoint(contactPoint: NewContactPoint!): ContactPoint!
|
|
2007
|
-
|
|
2008
|
-
"""
|
|
2009
|
-
To create new DataArchive
|
|
2010
|
-
"""
|
|
2588
|
+
|
|
2589
|
+
"""To create new DataArchive"""
|
|
2011
2590
|
createDataArchive(dataArchive: NewDataArchive!): DataArchive!
|
|
2012
2591
|
|
|
2013
|
-
"""
|
|
2014
|
-
To create new DataKeySet
|
|
2015
|
-
"""
|
|
2592
|
+
"""To create new DataKeySet"""
|
|
2016
2593
|
createDataKeySet(dataKeySet: NewDataKeySet!): DataKeySet!
|
|
2017
2594
|
|
|
2018
|
-
"""
|
|
2019
|
-
To create new DataOoc
|
|
2020
|
-
"""
|
|
2595
|
+
"""To create new DataOoc"""
|
|
2021
2596
|
createDataOoc(dataOoc: NewDataOoc!): DataOoc!
|
|
2022
2597
|
|
|
2023
|
-
"""
|
|
2024
|
-
To create new data sample
|
|
2025
|
-
"""
|
|
2598
|
+
"""To create new data sample"""
|
|
2026
2599
|
createDataSample(dataSample: NewDataSample!): DataSample!
|
|
2027
2600
|
|
|
2028
|
-
"""
|
|
2029
|
-
To create new DataSensor
|
|
2030
|
-
"""
|
|
2601
|
+
"""To create new DataSensor"""
|
|
2031
2602
|
createDataSensor(dataSensor: NewDataSensor!): DataSensor!
|
|
2032
2603
|
|
|
2033
|
-
"""
|
|
2034
|
-
To create new DataSet
|
|
2035
|
-
"""
|
|
2604
|
+
"""To create new DataSet"""
|
|
2036
2605
|
createDataSet(dataSet: NewDataSet!): DataSet!
|
|
2037
2606
|
|
|
2038
|
-
"""
|
|
2039
|
-
To create new Department
|
|
2040
|
-
"""
|
|
2607
|
+
"""To create new Department"""
|
|
2041
2608
|
createDepartment(department: NewDepartment!): Department!
|
|
2042
2609
|
|
|
2043
|
-
"""
|
|
2044
|
-
To create domain (Only superuser is granted this privilege.)
|
|
2045
|
-
"""
|
|
2610
|
+
"""To create domain (Only superuser is granted this privilege.)"""
|
|
2046
2611
|
createDomain(domainInput: DomainPatch!): Domain!
|
|
2047
2612
|
|
|
2048
|
-
"""
|
|
2049
|
-
To create new Employee
|
|
2050
|
-
"""
|
|
2613
|
+
"""To create new Employee"""
|
|
2051
2614
|
createEmployee(employee: NewEmployee!): Employee!
|
|
2052
2615
|
|
|
2053
|
-
"""
|
|
2054
|
-
To create new Entity
|
|
2055
|
-
"""
|
|
2616
|
+
"""To create new Entity"""
|
|
2056
2617
|
createEntity(entity: NewEntity!): Entity!
|
|
2057
2618
|
|
|
2058
|
-
"""
|
|
2059
|
-
To create new EntityColumn
|
|
2060
|
-
"""
|
|
2619
|
+
"""To create new EntityColumn"""
|
|
2061
2620
|
createEntityColumn(entityColumn: NewEntityColumn!): EntityColumn!
|
|
2062
2621
|
|
|
2063
|
-
"""
|
|
2064
|
-
To create new Font
|
|
2065
|
-
"""
|
|
2622
|
+
"""To create new Font"""
|
|
2066
2623
|
createFont(font: NewFont!): Font!
|
|
2067
2624
|
|
|
2068
|
-
"""
|
|
2069
|
-
To create new Group
|
|
2070
|
-
"""
|
|
2625
|
+
"""To create new Group"""
|
|
2071
2626
|
createGroup(group: NewGroup!): Group
|
|
2072
2627
|
|
|
2073
|
-
"""
|
|
2074
|
-
To create new LiteMenu
|
|
2075
|
-
"""
|
|
2628
|
+
"""To create new LiteMenu"""
|
|
2076
2629
|
createLiteMenu(liteMenu: NewLiteMenu!): LiteMenu!
|
|
2077
2630
|
|
|
2078
|
-
"""
|
|
2079
|
-
To create new Menu
|
|
2080
|
-
"""
|
|
2631
|
+
"""To create new Menu"""
|
|
2081
2632
|
createMenu(menu: NewMenu!): Menu!
|
|
2082
2633
|
|
|
2083
|
-
"""
|
|
2084
|
-
To create new MenuButton
|
|
2085
|
-
"""
|
|
2634
|
+
"""To create new MenuButton"""
|
|
2086
2635
|
createMenuButton(menuButton: NewMenuButton!): MenuButton!
|
|
2087
2636
|
|
|
2088
|
-
"""
|
|
2089
|
-
To create new MenuColumn
|
|
2090
|
-
"""
|
|
2637
|
+
"""To create new MenuColumn"""
|
|
2091
2638
|
createMenuColumn(menuColumn: NewMenuColumn!): MenuColumn!
|
|
2092
2639
|
|
|
2093
|
-
"""
|
|
2094
|
-
To create new MenuDetail
|
|
2095
|
-
"""
|
|
2640
|
+
"""To create new MenuDetail"""
|
|
2096
2641
|
createMenuDetail(menuDetail: NewMenuDetail!): MenuDetail!
|
|
2097
2642
|
|
|
2098
|
-
"""
|
|
2099
|
-
To create new MenuDetailButton
|
|
2100
|
-
"""
|
|
2643
|
+
"""To create new MenuDetailButton"""
|
|
2101
2644
|
createMenuDetailButton(menuDetailButton: NewMenuDetailButton!): MenuDetailButton!
|
|
2102
2645
|
|
|
2103
|
-
"""
|
|
2104
|
-
To create new MenuDetailColumn
|
|
2105
|
-
"""
|
|
2646
|
+
"""To create new MenuDetailColumn"""
|
|
2106
2647
|
createMenuDetailColumn(menuDetailColumn: NewMenuDetailColumn!): MenuDetailColumn!
|
|
2107
2648
|
|
|
2108
|
-
"""
|
|
2109
|
-
To create new ApprovalLine for current user
|
|
2110
|
-
"""
|
|
2649
|
+
"""To create new ApprovalLine for current user"""
|
|
2111
2650
|
createMyApprovalLine(approvalLine: NewApprovalLine!): ApprovalLine!
|
|
2112
2651
|
|
|
2113
|
-
"""
|
|
2114
|
-
|
|
2115
|
-
|
|
2652
|
+
"""To create new Notification"""
|
|
2653
|
+
createNotification(notification: NewNotification!): Notification!
|
|
2654
|
+
|
|
2655
|
+
"""To create new NotificationRule"""
|
|
2656
|
+
createNotificationRule(notificationRule: NewNotificationRule!): NotificationRule!
|
|
2657
|
+
|
|
2658
|
+
"""To create new Oauth2Client"""
|
|
2116
2659
|
createOauth2Client(oauth2Client: NewOauth2Client!): Oauth2Client!
|
|
2117
2660
|
|
|
2118
|
-
"""
|
|
2119
|
-
To create new Operation
|
|
2120
|
-
"""
|
|
2661
|
+
"""To create new Operation"""
|
|
2121
2662
|
createOperation(operation: NewOperation!): Operation!
|
|
2122
2663
|
|
|
2123
|
-
"""
|
|
2124
|
-
To create new PayloadLog
|
|
2125
|
-
"""
|
|
2664
|
+
"""To create new PayloadLog"""
|
|
2126
2665
|
createPayloadLog(payloadLog: NewPayloadLog!): PayloadLog!
|
|
2127
2666
|
|
|
2128
|
-
"""
|
|
2129
|
-
To create new PlayGroup
|
|
2130
|
-
"""
|
|
2667
|
+
"""To create new PlayGroup"""
|
|
2131
2668
|
createPlayGroup(playGroup: NewPlayGroup!): PlayGroup!
|
|
2132
2669
|
|
|
2133
|
-
"""
|
|
2134
|
-
To create new privilege
|
|
2135
|
-
"""
|
|
2670
|
+
"""To create new privilege"""
|
|
2136
2671
|
createPrivilege(privilege: NewPrivilege!): Privilege!
|
|
2137
2672
|
createProduct(product: NewProduct!): Product!
|
|
2138
2673
|
createProductBundle(productBundle: NewProductBundle!): ProductBundle!
|
|
2139
2674
|
|
|
2140
|
-
"""
|
|
2141
|
-
To create new ProductCombination
|
|
2142
|
-
"""
|
|
2675
|
+
"""To create new ProductCombination"""
|
|
2143
2676
|
createProductCombination(productCombination: NewProductCombination!): ProductCombination!
|
|
2144
2677
|
|
|
2145
|
-
"""
|
|
2146
|
-
To create new ProductCombinationSetting
|
|
2147
|
-
"""
|
|
2678
|
+
"""To create new ProductCombinationSetting"""
|
|
2148
2679
|
createProductCombinationSetting(productCombinationSetting: NewProductCombinationSetting!): ProductCombinationSetting!
|
|
2149
2680
|
createProductSet(productSet: NewProductSet!): ProductSet!
|
|
2150
2681
|
createProducts(products: [NewProduct!]!): [Product!]!
|
|
2151
2682
|
|
|
2152
|
-
"""
|
|
2153
|
-
To create new user
|
|
2154
|
-
"""
|
|
2683
|
+
"""To create new user"""
|
|
2155
2684
|
createRole(role: NewRole!): User!
|
|
2156
2685
|
|
|
2157
|
-
"""
|
|
2158
|
-
To create new Routing
|
|
2159
|
-
"""
|
|
2686
|
+
"""To create new Routing"""
|
|
2160
2687
|
createRouting(routing: NewRouting!): Routing!
|
|
2161
2688
|
|
|
2162
|
-
"""
|
|
2163
|
-
To create new RoutingItem
|
|
2164
|
-
"""
|
|
2689
|
+
"""To create new RoutingItem"""
|
|
2165
2690
|
createRoutingItem(routingItem: NewRoutingItem!): RoutingItem!
|
|
2166
2691
|
|
|
2167
|
-
"""
|
|
2168
|
-
To create new scenario
|
|
2169
|
-
"""
|
|
2692
|
+
"""To create new scenario"""
|
|
2170
2693
|
createScenario(scenario: NewScenario!): Scenario!
|
|
2171
2694
|
|
|
2172
|
-
"""
|
|
2173
|
-
To create new Setting
|
|
2174
|
-
"""
|
|
2695
|
+
"""To create new Setting"""
|
|
2175
2696
|
createSetting(setting: NewSetting!): Setting!
|
|
2176
2697
|
|
|
2177
|
-
"""
|
|
2178
|
-
To create new Terminology
|
|
2179
|
-
"""
|
|
2698
|
+
"""To create new Terminology"""
|
|
2180
2699
|
createTerminology(terminology: NewTerminology!): Terminology!
|
|
2181
2700
|
|
|
2182
|
-
"""
|
|
2183
|
-
|
|
2184
|
-
|
|
2701
|
+
"""To create new Theme"""
|
|
2702
|
+
createTheme(theme: NewTheme!): Theme!
|
|
2703
|
+
|
|
2704
|
+
"""To create new user"""
|
|
2185
2705
|
createUser(user: NewUser!): User!
|
|
2186
2706
|
createWorker(worker: NewWorker!): Worker!
|
|
2707
|
+
|
|
2708
|
+
"""To deactivate installable activity to Activity on given domain"""
|
|
2709
|
+
deactivateInstallableActivity(name: String!): Activity!
|
|
2710
|
+
|
|
2711
|
+
"""To delegate ActivityApproval"""
|
|
2712
|
+
delegateActivityApproval(comment: String, id: String!, to: ObjectRef!): ActivityApproval
|
|
2713
|
+
|
|
2714
|
+
"""To delegate a ActivityThread"""
|
|
2715
|
+
delegateActivityThread(assignee: ObjectRef, dueAt: Timestamp, id: String!, reason: String): ActivityThread!
|
|
2716
|
+
|
|
2717
|
+
"""To delete multiple Activities"""
|
|
2718
|
+
deleteActivities(ids: [String!]!): Boolean!
|
|
2719
|
+
|
|
2720
|
+
"""To delete Activity"""
|
|
2721
|
+
deleteActivity(id: String!): Boolean!
|
|
2722
|
+
|
|
2723
|
+
"""To delete ActivityTemplate"""
|
|
2724
|
+
deleteActivityTemplate(id: String!): Boolean!
|
|
2725
|
+
|
|
2726
|
+
"""To delete multiple ActivityTemplates"""
|
|
2727
|
+
deleteActivityTemplates(ids: [String!]!): Boolean!
|
|
2187
2728
|
deleteAppBinding(id: String!): Boolean!
|
|
2188
2729
|
|
|
2189
|
-
"""
|
|
2190
|
-
To delete appliance
|
|
2191
|
-
"""
|
|
2730
|
+
"""To delete appliance"""
|
|
2192
2731
|
deleteAppliance(id: String!): Boolean!
|
|
2193
2732
|
|
|
2194
|
-
"""
|
|
2195
|
-
To delete application
|
|
2196
|
-
"""
|
|
2733
|
+
"""To delete application"""
|
|
2197
2734
|
deleteApplication(id: String!): Boolean!
|
|
2198
2735
|
|
|
2199
|
-
"""
|
|
2200
|
-
To delete ApprovalLine
|
|
2201
|
-
"""
|
|
2736
|
+
"""To delete ApprovalLine"""
|
|
2202
2737
|
deleteApprovalLine(id: String!): Boolean!
|
|
2203
2738
|
|
|
2204
|
-
"""
|
|
2205
|
-
To delete multiple ApprovalLines
|
|
2206
|
-
"""
|
|
2739
|
+
"""To delete multiple ApprovalLines"""
|
|
2207
2740
|
deleteApprovalLines(ids: [String!]!): Boolean!
|
|
2208
2741
|
deleteAttachment(id: String!): Boolean!
|
|
2209
2742
|
deleteAttachmentsByRef(refBys: [String!]!): Boolean!
|
|
2743
|
+
|
|
2744
|
+
"""To delete AttributeSet"""
|
|
2745
|
+
deleteAttributeSet(id: String!): Boolean!
|
|
2746
|
+
|
|
2747
|
+
"""To delete multiple AttributeSets"""
|
|
2748
|
+
deleteAttributeSets(ids: [String!]!): Boolean!
|
|
2210
2749
|
deleteBizOption(name: String!): Boolean!
|
|
2211
2750
|
deleteBizOptionDetail(name: String!): Boolean!
|
|
2212
2751
|
deleteBizOptionDetails(names: [String!]!): Boolean!
|
|
@@ -2214,278 +2753,191 @@ type Mutation {
|
|
|
2214
2753
|
deleteBizplace(id: String!): Boolean!
|
|
2215
2754
|
deleteBizplaces(ids: [String!]!): Boolean!
|
|
2216
2755
|
|
|
2217
|
-
"""
|
|
2218
|
-
To delete Board
|
|
2219
|
-
"""
|
|
2756
|
+
"""To delete Board"""
|
|
2220
2757
|
deleteBoard(id: String!): Boolean!
|
|
2221
2758
|
|
|
2222
|
-
"""
|
|
2223
|
-
|
|
2224
|
-
|
|
2759
|
+
"""To delete BoardTemplate"""
|
|
2760
|
+
deleteBoardTemplate(id: String!): Boolean!
|
|
2761
|
+
|
|
2762
|
+
"""To delete CommonCode"""
|
|
2225
2763
|
deleteCommonCode(id: String!): Boolean!
|
|
2226
2764
|
|
|
2227
|
-
"""
|
|
2228
|
-
To delete CommonCodeDetail
|
|
2229
|
-
"""
|
|
2765
|
+
"""To delete CommonCodeDetail"""
|
|
2230
2766
|
deleteCommonCodeDetail(id: String!): Boolean!
|
|
2231
2767
|
|
|
2232
|
-
"""
|
|
2233
|
-
To delete multiple CommonCodeDetails
|
|
2234
|
-
"""
|
|
2768
|
+
"""To delete multiple CommonCodeDetails"""
|
|
2235
2769
|
deleteCommonCodeDetails(ids: [String!]!): Boolean!
|
|
2236
2770
|
|
|
2237
|
-
"""
|
|
2238
|
-
To delete multiple CommonCodes
|
|
2239
|
-
"""
|
|
2771
|
+
"""To delete multiple CommonCodes"""
|
|
2240
2772
|
deleteCommonCodes(ids: [String!]!): Boolean!
|
|
2241
2773
|
deleteCompanies(ids: [String!]!): Boolean!
|
|
2242
2774
|
deleteCompany(id: String!): Boolean!
|
|
2243
2775
|
|
|
2244
|
-
"""
|
|
2245
|
-
To delete connection
|
|
2246
|
-
"""
|
|
2776
|
+
"""To delete connection"""
|
|
2247
2777
|
deleteConnection(name: String!): Boolean!
|
|
2248
2778
|
|
|
2249
|
-
"""
|
|
2250
|
-
To delete multiple connections
|
|
2251
|
-
"""
|
|
2779
|
+
"""To delete multiple connections"""
|
|
2252
2780
|
deleteConnections(names: [String!]!): Boolean!
|
|
2253
2781
|
|
|
2254
|
-
"""
|
|
2255
|
-
To delete Contact
|
|
2256
|
-
"""
|
|
2782
|
+
"""To delete Contact"""
|
|
2257
2783
|
deleteContact(id: String!): Boolean!
|
|
2258
2784
|
deleteContactPoint(id: String!): Boolean!
|
|
2259
2785
|
deleteContactPoints(ids: [String!]!): Boolean!
|
|
2260
2786
|
|
|
2261
|
-
"""
|
|
2262
|
-
To delete multiple Contacts
|
|
2263
|
-
"""
|
|
2787
|
+
"""To delete multiple Contacts"""
|
|
2264
2788
|
deleteContacts(ids: [String!]!): Boolean!
|
|
2265
2789
|
|
|
2266
|
-
"""
|
|
2267
|
-
To delete DataArchive
|
|
2268
|
-
"""
|
|
2790
|
+
"""To delete DataArchive"""
|
|
2269
2791
|
deleteDataArchive(id: String!): Boolean!
|
|
2270
2792
|
|
|
2271
|
-
"""
|
|
2272
|
-
To delete multiple dataArchives
|
|
2273
|
-
"""
|
|
2793
|
+
"""To delete multiple dataArchives"""
|
|
2274
2794
|
deleteDataArchives(ids: [String!]!): Boolean!
|
|
2275
2795
|
|
|
2276
|
-
"""
|
|
2277
|
-
To delete DataKeySet
|
|
2278
|
-
"""
|
|
2796
|
+
"""To delete DataKeySet"""
|
|
2279
2797
|
deleteDataKeySet(id: String!): Boolean!
|
|
2280
2798
|
|
|
2281
|
-
"""
|
|
2282
|
-
To delete multiple DataKeySets
|
|
2283
|
-
"""
|
|
2799
|
+
"""To delete multiple DataKeySets"""
|
|
2284
2800
|
deleteDataKeySets(ids: [String!]!): Boolean!
|
|
2285
2801
|
|
|
2286
|
-
"""
|
|
2287
|
-
To delete DataSensor
|
|
2288
|
-
"""
|
|
2802
|
+
"""To delete DataSensor"""
|
|
2289
2803
|
deleteDataSensor(id: String!): Boolean!
|
|
2290
2804
|
|
|
2291
|
-
"""
|
|
2292
|
-
To delete multiple dataSensors
|
|
2293
|
-
"""
|
|
2805
|
+
"""To delete multiple dataSensors"""
|
|
2294
2806
|
deleteDataSensors(ids: [String!]!): Boolean!
|
|
2295
2807
|
|
|
2296
|
-
"""
|
|
2297
|
-
To delete DataSet
|
|
2298
|
-
"""
|
|
2808
|
+
"""To delete DataSet"""
|
|
2299
2809
|
deleteDataSet(id: String!): Boolean!
|
|
2300
2810
|
|
|
2301
|
-
"""
|
|
2302
|
-
To delete multiple dataSets
|
|
2303
|
-
"""
|
|
2811
|
+
"""To delete multiple dataSets"""
|
|
2304
2812
|
deleteDataSets(ids: [String!]!): Boolean!
|
|
2305
2813
|
|
|
2306
|
-
"""
|
|
2307
|
-
To delete Department
|
|
2308
|
-
"""
|
|
2814
|
+
"""To delete Department"""
|
|
2309
2815
|
deleteDepartment(id: String!): Boolean!
|
|
2310
2816
|
|
|
2311
|
-
"""
|
|
2312
|
-
To delete multiple Departments
|
|
2313
|
-
"""
|
|
2817
|
+
"""To delete multiple Departments"""
|
|
2314
2818
|
deleteDepartments(ids: [String!]!): Boolean!
|
|
2315
2819
|
|
|
2316
|
-
"""
|
|
2317
|
-
To delete domain (Only superuser is granted this privilege.)
|
|
2318
|
-
"""
|
|
2820
|
+
"""To delete domain (Only superuser is granted this privilege.)"""
|
|
2319
2821
|
deleteDomain(name: String!): Domain!
|
|
2320
2822
|
|
|
2321
|
-
"""
|
|
2322
|
-
To delete domain user
|
|
2323
|
-
"""
|
|
2823
|
+
"""To delete domain user"""
|
|
2324
2824
|
deleteDomainUser(email: String!): Boolean!
|
|
2325
2825
|
|
|
2326
|
-
"""
|
|
2327
|
-
To delete multiple domains (Only superuser is granted this privilege.)
|
|
2328
|
-
"""
|
|
2826
|
+
"""To delete multiple domains (Only superuser is granted this privilege.)"""
|
|
2329
2827
|
deleteDomains(names: [String!]!): Boolean!
|
|
2330
2828
|
|
|
2331
|
-
"""
|
|
2332
|
-
|
|
2333
|
-
|
|
2829
|
+
"""To delete Activity Instance of draft state"""
|
|
2830
|
+
deleteDraftActivityInstance(id: String!): Boolean!
|
|
2831
|
+
|
|
2832
|
+
"""To delete multiple Activity Instances of draft state"""
|
|
2833
|
+
deleteDraftActivityInstances(ids: [String!]!): Boolean!
|
|
2834
|
+
|
|
2835
|
+
"""To delete Employee"""
|
|
2334
2836
|
deleteEmployee(id: String!): Boolean!
|
|
2335
2837
|
|
|
2336
|
-
"""
|
|
2337
|
-
To delete multiple Employees
|
|
2338
|
-
"""
|
|
2838
|
+
"""To delete multiple Employees"""
|
|
2339
2839
|
deleteEmployees(ids: [String!]!): Boolean!
|
|
2340
2840
|
|
|
2341
|
-
"""
|
|
2342
|
-
To delete multiple Entities
|
|
2343
|
-
"""
|
|
2841
|
+
"""To delete multiple Entities"""
|
|
2344
2842
|
deleteEntities(ids: [String!]!): Boolean!
|
|
2345
2843
|
|
|
2346
|
-
"""
|
|
2347
|
-
To delete Entity
|
|
2348
|
-
"""
|
|
2844
|
+
"""To delete Entity"""
|
|
2349
2845
|
deleteEntity(id: String!): Boolean!
|
|
2350
2846
|
|
|
2351
|
-
"""
|
|
2352
|
-
To delete EntityColumn
|
|
2353
|
-
"""
|
|
2847
|
+
"""To delete EntityColumn"""
|
|
2354
2848
|
deleteEntityColumn(id: String!): Boolean!
|
|
2355
2849
|
|
|
2356
|
-
"""
|
|
2357
|
-
To delete multiple EntityColumns
|
|
2358
|
-
"""
|
|
2850
|
+
"""To delete multiple EntityColumns"""
|
|
2359
2851
|
deleteEntityColumns(ids: [String!]!): Boolean!
|
|
2360
2852
|
|
|
2361
|
-
"""
|
|
2362
|
-
To delete Font
|
|
2363
|
-
"""
|
|
2853
|
+
"""To delete Font"""
|
|
2364
2854
|
deleteFont(id: String!): Boolean!
|
|
2365
2855
|
|
|
2366
|
-
"""
|
|
2367
|
-
To delete Group
|
|
2368
|
-
"""
|
|
2856
|
+
"""To delete Group"""
|
|
2369
2857
|
deleteGroup(id: String!): Boolean!
|
|
2370
2858
|
|
|
2371
|
-
"""
|
|
2372
|
-
To delete LiteMenu
|
|
2373
|
-
"""
|
|
2859
|
+
"""To delete LiteMenu"""
|
|
2374
2860
|
deleteLiteMenu(id: String!): Boolean!
|
|
2375
2861
|
|
|
2376
|
-
"""
|
|
2377
|
-
To delete Menu
|
|
2378
|
-
"""
|
|
2862
|
+
"""To delete Menu"""
|
|
2379
2863
|
deleteMenu(id: String!): Boolean!
|
|
2380
2864
|
|
|
2381
|
-
"""
|
|
2382
|
-
To delete MenuButton
|
|
2383
|
-
"""
|
|
2865
|
+
"""To delete MenuButton"""
|
|
2384
2866
|
deleteMenuButton(id: String!): Boolean!
|
|
2385
2867
|
|
|
2386
|
-
"""
|
|
2387
|
-
To delete multiple MenuButtons
|
|
2388
|
-
"""
|
|
2868
|
+
"""To delete multiple MenuButtons"""
|
|
2389
2869
|
deleteMenuButtons(ids: [String!]!): Boolean!
|
|
2390
2870
|
|
|
2391
|
-
"""
|
|
2392
|
-
To delete MenuColumn
|
|
2393
|
-
"""
|
|
2871
|
+
"""To delete MenuColumn"""
|
|
2394
2872
|
deleteMenuColumn(id: String!): Boolean!
|
|
2395
2873
|
|
|
2396
|
-
"""
|
|
2397
|
-
To delete multiple MenuColumns
|
|
2398
|
-
"""
|
|
2874
|
+
"""To delete multiple MenuColumns"""
|
|
2399
2875
|
deleteMenuColumns(ids: [String!]!): Boolean!
|
|
2400
2876
|
|
|
2401
|
-
"""
|
|
2402
|
-
To delete MenuDetail
|
|
2403
|
-
"""
|
|
2877
|
+
"""To delete MenuDetail"""
|
|
2404
2878
|
deleteMenuDetail(id: String!): Boolean!
|
|
2405
2879
|
|
|
2406
|
-
"""
|
|
2407
|
-
To delete MenuDetailButton
|
|
2408
|
-
"""
|
|
2880
|
+
"""To delete MenuDetailButton"""
|
|
2409
2881
|
deleteMenuDetailButton(id: String!): Boolean!
|
|
2410
2882
|
|
|
2411
|
-
"""
|
|
2412
|
-
To delete multiple MenuDetailButtons
|
|
2413
|
-
"""
|
|
2883
|
+
"""To delete multiple MenuDetailButtons"""
|
|
2414
2884
|
deleteMenuDetailButtons(ids: [String!]!): Boolean!
|
|
2415
2885
|
|
|
2416
|
-
"""
|
|
2417
|
-
To delete MenuDetailColumn
|
|
2418
|
-
"""
|
|
2886
|
+
"""To delete MenuDetailColumn"""
|
|
2419
2887
|
deleteMenuDetailColumn(id: String!): Boolean!
|
|
2420
2888
|
|
|
2421
|
-
"""
|
|
2422
|
-
To delete multiple MenuDetailColumns
|
|
2423
|
-
"""
|
|
2889
|
+
"""To delete multiple MenuDetailColumns"""
|
|
2424
2890
|
deleteMenuDetailColumns(ids: [String!]!): Boolean!
|
|
2425
2891
|
|
|
2426
|
-
"""
|
|
2427
|
-
To delete multiple MenuDetails
|
|
2428
|
-
"""
|
|
2892
|
+
"""To delete multiple MenuDetails"""
|
|
2429
2893
|
deleteMenuDetails(ids: [String!]!): Boolean!
|
|
2430
2894
|
|
|
2431
|
-
"""
|
|
2432
|
-
To delete multiple Menus
|
|
2433
|
-
"""
|
|
2895
|
+
"""To delete multiple Menus"""
|
|
2434
2896
|
deleteMenus(ids: [String!]!): Boolean!
|
|
2435
2897
|
|
|
2436
|
-
"""
|
|
2437
|
-
To delete ApprovalLine for current user
|
|
2438
|
-
"""
|
|
2898
|
+
"""To delete ApprovalLine for current user"""
|
|
2439
2899
|
deleteMyApprovalLine(id: String!): Boolean!
|
|
2440
2900
|
|
|
2441
|
-
"""
|
|
2442
|
-
To delete multiple ApprovalLines for current user
|
|
2443
|
-
"""
|
|
2901
|
+
"""To delete multiple ApprovalLines for current user"""
|
|
2444
2902
|
deleteMyApprovalLines(ids: [String!]!): Boolean!
|
|
2445
2903
|
|
|
2446
|
-
"""
|
|
2447
|
-
|
|
2448
|
-
|
|
2904
|
+
"""To delete Notification"""
|
|
2905
|
+
deleteNotification(id: String!): Boolean!
|
|
2906
|
+
|
|
2907
|
+
"""To delete NotificationRule"""
|
|
2908
|
+
deleteNotificationRule(id: String!): Boolean!
|
|
2909
|
+
|
|
2910
|
+
"""To delete multiple NotificationRules"""
|
|
2911
|
+
deleteNotificationRules(ids: [String!]!): Boolean!
|
|
2912
|
+
|
|
2913
|
+
"""To delete multiple Notificationes"""
|
|
2914
|
+
deleteNotificationes(ids: [String!]!): Boolean!
|
|
2915
|
+
|
|
2916
|
+
"""To delete Oauth2Client"""
|
|
2449
2917
|
deleteOauth2Client(id: String!): Boolean!
|
|
2450
2918
|
|
|
2451
|
-
"""
|
|
2452
|
-
To delete multiple Oauth2Clients
|
|
2453
|
-
"""
|
|
2919
|
+
"""To delete multiple Oauth2Clients"""
|
|
2454
2920
|
deleteOauth2Clients(ids: [String!]!): Boolean!
|
|
2455
2921
|
|
|
2456
|
-
"""
|
|
2457
|
-
To delete Operation
|
|
2458
|
-
"""
|
|
2922
|
+
"""To delete Operation"""
|
|
2459
2923
|
deleteOperation(id: String!): Boolean!
|
|
2460
2924
|
|
|
2461
|
-
"""
|
|
2462
|
-
To delete multiple operations
|
|
2463
|
-
"""
|
|
2925
|
+
"""To delete multiple operations"""
|
|
2464
2926
|
deleteOperations(ids: [String!]!): Boolean!
|
|
2465
2927
|
|
|
2466
|
-
"""
|
|
2467
|
-
To delete multiple partnerSettings
|
|
2468
|
-
"""
|
|
2928
|
+
"""To delete multiple partnerSettings"""
|
|
2469
2929
|
deletePartnerSettings(ids: [String!]!): Boolean!
|
|
2470
2930
|
|
|
2471
|
-
"""
|
|
2472
|
-
To delete PayloadLog
|
|
2473
|
-
"""
|
|
2931
|
+
"""To delete PayloadLog"""
|
|
2474
2932
|
deletePayloadLog(id: String!): Boolean!
|
|
2475
2933
|
|
|
2476
|
-
"""
|
|
2477
|
-
To delete multiple payloadLogs
|
|
2478
|
-
"""
|
|
2934
|
+
"""To delete multiple payloadLogs"""
|
|
2479
2935
|
deletePayloadLogs(ids: [String!]!): Boolean!
|
|
2480
2936
|
|
|
2481
|
-
"""
|
|
2482
|
-
To delete PlayGroup
|
|
2483
|
-
"""
|
|
2937
|
+
"""To delete PlayGroup"""
|
|
2484
2938
|
deletePlayGroup(id: String!): Boolean!
|
|
2485
2939
|
|
|
2486
|
-
"""
|
|
2487
|
-
To delete privilege
|
|
2488
|
-
"""
|
|
2940
|
+
"""To delete privilege"""
|
|
2489
2941
|
deletePrivilege(category: String!, name: String!): Boolean!
|
|
2490
2942
|
deleteProduct(id: String!): Boolean!
|
|
2491
2943
|
deleteProductBundle(name: String!): Boolean!
|
|
@@ -2493,24 +2945,16 @@ type Mutation {
|
|
|
2493
2945
|
deleteProductBundleSettings(ids: [String!]!): Boolean!
|
|
2494
2946
|
deleteProductBundles(ids: [String!]!): Boolean!
|
|
2495
2947
|
|
|
2496
|
-
"""
|
|
2497
|
-
To delete ProductCombination
|
|
2498
|
-
"""
|
|
2948
|
+
"""To delete ProductCombination"""
|
|
2499
2949
|
deleteProductCombination(id: String!): Boolean!
|
|
2500
2950
|
|
|
2501
|
-
"""
|
|
2502
|
-
To delete ProductCombinationSetting
|
|
2503
|
-
"""
|
|
2951
|
+
"""To delete ProductCombinationSetting"""
|
|
2504
2952
|
deleteProductCombinationSetting(id: String!): Boolean!
|
|
2505
2953
|
|
|
2506
|
-
"""
|
|
2507
|
-
To delete multiple productCombinationSettings
|
|
2508
|
-
"""
|
|
2954
|
+
"""To delete multiple productCombinationSettings"""
|
|
2509
2955
|
deleteProductCombinationSettings(ids: [String!]!): Boolean!
|
|
2510
2956
|
|
|
2511
|
-
"""
|
|
2512
|
-
To delete multiple productCombinations
|
|
2513
|
-
"""
|
|
2957
|
+
"""To delete multiple productCombinations"""
|
|
2514
2958
|
deleteProductCombinations(ids: [String!]!): Boolean!
|
|
2515
2959
|
deleteProductDetail(name: String!): Boolean!
|
|
2516
2960
|
deleteProductDetailBizplaceSetting(name: String!): Boolean!
|
|
@@ -2520,682 +2964,599 @@ type Mutation {
|
|
|
2520
2964
|
deleteProductSets(ids: [String!]!): Boolean!
|
|
2521
2965
|
deleteProducts(ids: [String!]!): Boolean!
|
|
2522
2966
|
|
|
2523
|
-
"""
|
|
2524
|
-
To delete role
|
|
2525
|
-
"""
|
|
2967
|
+
"""To delete role"""
|
|
2526
2968
|
deleteRole(id: String!): Boolean!
|
|
2527
2969
|
|
|
2528
|
-
"""
|
|
2529
|
-
To delete multiple roles
|
|
2530
|
-
"""
|
|
2970
|
+
"""To delete multiple roles"""
|
|
2531
2971
|
deleteRoles(ids: [String!]!): Boolean!
|
|
2532
2972
|
|
|
2533
|
-
"""
|
|
2534
|
-
To delete Routing
|
|
2535
|
-
"""
|
|
2973
|
+
"""To delete Routing"""
|
|
2536
2974
|
deleteRouting(id: String!): Boolean!
|
|
2537
2975
|
|
|
2538
|
-
"""
|
|
2539
|
-
To delete RoutingItem
|
|
2540
|
-
"""
|
|
2976
|
+
"""To delete RoutingItem"""
|
|
2541
2977
|
deleteRoutingItem(id: String!): Boolean!
|
|
2542
2978
|
|
|
2543
|
-
"""
|
|
2544
|
-
To delete multiple routingItems
|
|
2545
|
-
"""
|
|
2979
|
+
"""To delete multiple routingItems"""
|
|
2546
2980
|
deleteRoutingItems(ids: [String!]!): Boolean!
|
|
2547
2981
|
|
|
2548
|
-
"""
|
|
2549
|
-
To delete multiple routings
|
|
2550
|
-
"""
|
|
2982
|
+
"""To delete multiple routings"""
|
|
2551
2983
|
deleteRoutings(ids: [String!]!): Boolean!
|
|
2552
2984
|
|
|
2553
|
-
"""
|
|
2554
|
-
To delete scenario
|
|
2555
|
-
"""
|
|
2985
|
+
"""To delete scenario"""
|
|
2556
2986
|
deleteScenario(name: String!): Boolean!
|
|
2557
2987
|
|
|
2558
|
-
"""
|
|
2559
|
-
To delete multiple scenarios
|
|
2560
|
-
"""
|
|
2988
|
+
"""To delete multiple scenarios"""
|
|
2561
2989
|
deleteScenarios(ids: [String!]!): Boolean!
|
|
2562
2990
|
|
|
2563
|
-
"""
|
|
2564
|
-
To delete Setting
|
|
2565
|
-
"""
|
|
2991
|
+
"""To delete Setting"""
|
|
2566
2992
|
deleteSetting(name: String!): Boolean!
|
|
2567
2993
|
|
|
2568
|
-
"""
|
|
2569
|
-
To delete multiple settings
|
|
2570
|
-
"""
|
|
2994
|
+
"""To delete multiple settings"""
|
|
2571
2995
|
deleteSettings(names: [String!]!): Boolean!
|
|
2572
2996
|
|
|
2573
|
-
"""
|
|
2574
|
-
To delete multiple steps
|
|
2575
|
-
"""
|
|
2997
|
+
"""To delete multiple steps"""
|
|
2576
2998
|
deleteSteps(ids: [String!]!): Boolean!
|
|
2577
2999
|
|
|
2578
|
-
"""
|
|
2579
|
-
To delete multiple Terminologies
|
|
2580
|
-
"""
|
|
3000
|
+
"""To delete multiple Terminologies"""
|
|
2581
3001
|
deleteTerminologies(ids: [String!]!): Boolean!
|
|
2582
3002
|
|
|
2583
|
-
"""
|
|
2584
|
-
To delete Terminology
|
|
2585
|
-
"""
|
|
3003
|
+
"""To delete Terminology"""
|
|
2586
3004
|
deleteTerminology(id: String!): Boolean!
|
|
2587
3005
|
|
|
2588
|
-
"""
|
|
2589
|
-
|
|
2590
|
-
|
|
3006
|
+
"""To delete Theme"""
|
|
3007
|
+
deleteTheme(id: String!): Boolean!
|
|
3008
|
+
|
|
3009
|
+
"""To delete multiple Themes"""
|
|
3010
|
+
deleteThemes(ids: [String!]!): Boolean!
|
|
3011
|
+
|
|
3012
|
+
"""To delete a user"""
|
|
2591
3013
|
deleteUser(email: String!): Boolean!
|
|
2592
3014
|
|
|
2593
|
-
"""
|
|
2594
|
-
To delete some users
|
|
2595
|
-
"""
|
|
3015
|
+
"""To delete some users"""
|
|
2596
3016
|
deleteUsers(emails: [String!]!): Boolean!
|
|
2597
3017
|
|
|
2598
|
-
"""
|
|
2599
|
-
To delete multiple workShifts
|
|
2600
|
-
"""
|
|
3018
|
+
"""To delete multiple workShifts"""
|
|
2601
3019
|
deleteWorkShifts(ids: [String!]!): Boolean!
|
|
2602
3020
|
deleteWorker(id: String!): Boolean!
|
|
2603
3021
|
deleteWorkers(ids: [String!]!): Boolean!
|
|
2604
3022
|
|
|
2605
|
-
"""
|
|
2606
|
-
To detach a contact from Employee
|
|
2607
|
-
"""
|
|
3023
|
+
"""To detach a contact from Employee"""
|
|
2608
3024
|
detachContact(id: String!): Employee!
|
|
2609
3025
|
|
|
2610
|
-
"""
|
|
2611
|
-
To disconnect a connection
|
|
2612
|
-
"""
|
|
3026
|
+
"""To disconnect a connection"""
|
|
2613
3027
|
disconnectConnection(name: String!): Connection!
|
|
2614
3028
|
domainRegister(domainInput: DomainGeneratorInput!): Domain!
|
|
2615
3029
|
domainUserRoleRegister(newDomainInfo: DomainUserRoleInput!): Domain!
|
|
3030
|
+
|
|
3031
|
+
"""To draft standard ActivityInstance"""
|
|
3032
|
+
draftActivityInstance(activityInstance: ActivityInstanceDraft!): ActivityInstance!
|
|
3033
|
+
|
|
3034
|
+
"""To end a ActivityInstance"""
|
|
3035
|
+
endActivityInstance(id: String!, output: Object, reason: String): ActivityInstance!
|
|
3036
|
+
|
|
3037
|
+
"""To end a ActivityThread"""
|
|
3038
|
+
endActivityThread(id: String!, output: Object, reason: String): ActivityThread!
|
|
2616
3039
|
generateApplianceSecret(id: String!): Appliance!
|
|
2617
3040
|
generateApplicationSecret(id: String!): Application!
|
|
2618
3041
|
|
|
2619
|
-
"""
|
|
2620
|
-
|
|
2621
|
-
|
|
3042
|
+
"""To generate new Data Summaries"""
|
|
3043
|
+
generateDataSummaries(dataSetId: String!, date: String!, period: String!): Boolean!
|
|
3044
|
+
|
|
3045
|
+
"""To generate new Data Summaries"""
|
|
3046
|
+
generateLatestDataSummaries(dataSetId: String!): Boolean!
|
|
3047
|
+
|
|
3048
|
+
"""To generate data sample one"""
|
|
2622
3049
|
generateMockupData(params: DataSampleMockupInfo!): Boolean!
|
|
2623
3050
|
|
|
2624
|
-
"""
|
|
2625
|
-
To create new DataArchive
|
|
2626
|
-
"""
|
|
3051
|
+
"""To create new DataArchive"""
|
|
2627
3052
|
generatePresignedUrl(patch: DataArchivePatch!): DataArchive!
|
|
2628
3053
|
generateUploadURL(type: String!): UploadURL!
|
|
2629
3054
|
|
|
2630
|
-
"""
|
|
2631
|
-
To get oauth2 auth URL
|
|
2632
|
-
"""
|
|
3055
|
+
"""To get oauth2 auth URL"""
|
|
2633
3056
|
getOauth2AuthUrl(id: String!): String!
|
|
2634
3057
|
grantRoles(customerId: String!, roles: [RolePatch!]!): Boolean!
|
|
2635
3058
|
|
|
2636
|
-
"""
|
|
2637
|
-
|
|
2638
|
-
|
|
3059
|
+
"""To import multiple Activities"""
|
|
3060
|
+
importActivities(activities: [ActivityPatch!]!): Boolean!
|
|
3061
|
+
|
|
3062
|
+
"""To import multiple ActivityTemplates"""
|
|
3063
|
+
importActivityTemplates(activityTemplates: [ActivityTemplatePatch!]!): Boolean!
|
|
3064
|
+
|
|
3065
|
+
"""To import multiple ApprovalLines"""
|
|
2639
3066
|
importApprovalLines(approvalLines: [ApprovalLinePatch!]!): Boolean!
|
|
2640
3067
|
|
|
2641
|
-
"""
|
|
2642
|
-
|
|
2643
|
-
|
|
3068
|
+
"""To import multiple AttributeSets"""
|
|
3069
|
+
importAttributeSets(attributes: [AttributeSetPatch!]!): Boolean!
|
|
3070
|
+
|
|
3071
|
+
"""To import multiple CommonCodeDetails"""
|
|
2644
3072
|
importCommonCodeDetails(commonCodeDetails: [CommonCodeDetailPatch!]!): Boolean!
|
|
2645
3073
|
|
|
2646
|
-
"""
|
|
2647
|
-
To import multiple CommonCodes
|
|
2648
|
-
"""
|
|
3074
|
+
"""To import multiple CommonCodes"""
|
|
2649
3075
|
importCommonCodes(commonCodes: [CommonCodePatch!]!): Boolean!
|
|
2650
3076
|
|
|
2651
|
-
"""
|
|
2652
|
-
To import multiple Contacts
|
|
2653
|
-
"""
|
|
3077
|
+
"""To import multiple Contacts"""
|
|
2654
3078
|
importContacts(contacts: [ContactPatch!]!): Boolean!
|
|
2655
3079
|
|
|
2656
|
-
"""
|
|
2657
|
-
To import multiple data-archives
|
|
2658
|
-
"""
|
|
3080
|
+
"""To import multiple data-archives"""
|
|
2659
3081
|
importDataArchives(dataArchives: [DataArchivePatch!]!): Boolean!
|
|
2660
3082
|
|
|
2661
|
-
"""
|
|
2662
|
-
To import multiple DataKeySets
|
|
2663
|
-
"""
|
|
3083
|
+
"""To import multiple DataKeySets"""
|
|
2664
3084
|
importDataKeySets(dataKeySets: [DataKeySetPatch!]!): Boolean!
|
|
2665
3085
|
|
|
2666
|
-
"""
|
|
2667
|
-
To import multiple data-sets
|
|
2668
|
-
"""
|
|
3086
|
+
"""To import multiple data-sets"""
|
|
2669
3087
|
importDataSets(dataSets: [DataSetPatch!]!): Boolean!
|
|
2670
3088
|
|
|
2671
|
-
"""
|
|
2672
|
-
To import multiple Departments
|
|
2673
|
-
"""
|
|
3089
|
+
"""To import multiple Departments"""
|
|
2674
3090
|
importDepartments(departments: [DepartmentPatch!]!): Boolean!
|
|
2675
3091
|
|
|
2676
|
-
"""
|
|
2677
|
-
To import multiple Employees
|
|
2678
|
-
"""
|
|
3092
|
+
"""To import multiple Employees"""
|
|
2679
3093
|
importEmployees(employees: [EmployeePatch!]!): Boolean!
|
|
2680
3094
|
|
|
2681
|
-
"""
|
|
2682
|
-
To import multiple MenuButtons
|
|
2683
|
-
"""
|
|
3095
|
+
"""To import multiple MenuButtons"""
|
|
2684
3096
|
importMenuButtons(menuButtons: [MenuButtonPatch!]!): Boolean!
|
|
2685
3097
|
|
|
2686
|
-
"""
|
|
2687
|
-
To import multiple MenuColumns
|
|
2688
|
-
"""
|
|
3098
|
+
"""To import multiple MenuColumns"""
|
|
2689
3099
|
importMenuColumns(menuColumns: [MenuColumnPatch!]!): Boolean!
|
|
2690
3100
|
|
|
2691
|
-
"""
|
|
2692
|
-
To import multiple MenuDetailButtons
|
|
2693
|
-
"""
|
|
3101
|
+
"""To import multiple MenuDetailButtons"""
|
|
2694
3102
|
importMenuDetailButtons(menuDetailButtons: [MenuDetailButtonPatch!]!): Boolean!
|
|
2695
3103
|
|
|
2696
|
-
"""
|
|
2697
|
-
To import multiple MenuDetailColumns
|
|
2698
|
-
"""
|
|
3104
|
+
"""To import multiple MenuDetailColumns"""
|
|
2699
3105
|
importMenuDetailColumns(menuDetailColumns: [MenuDetailColumnPatch!]!): Boolean!
|
|
2700
3106
|
|
|
2701
|
-
"""
|
|
2702
|
-
To import multiple MenuDetails
|
|
2703
|
-
"""
|
|
3107
|
+
"""To import multiple MenuDetails"""
|
|
2704
3108
|
importMenuDetails(menuDetails: [MenuDetailPatch!]!): Boolean!
|
|
2705
3109
|
|
|
2706
|
-
"""
|
|
2707
|
-
To import multiple Menus
|
|
2708
|
-
"""
|
|
3110
|
+
"""To import multiple Menus"""
|
|
2709
3111
|
importMenus(menus: [MenuPatch!]!): Boolean!
|
|
2710
3112
|
importMultipleProduct(patches: [ProductPatch!]!): [Product!]!
|
|
2711
3113
|
|
|
2712
|
-
"""
|
|
2713
|
-
|
|
2714
|
-
|
|
3114
|
+
"""To import multiple NotificationRules"""
|
|
3115
|
+
importNotificationRules(notificationRules: [NotificationRulePatch!]!): Boolean!
|
|
3116
|
+
|
|
3117
|
+
"""To import multiple Oauth2Clients"""
|
|
2715
3118
|
importOauth2Clients(oauth2Clients: [Oauth2ClientPatch!]!): Boolean!
|
|
2716
3119
|
|
|
2717
|
-
"""
|
|
2718
|
-
To import multiple scenarios
|
|
2719
|
-
"""
|
|
3120
|
+
"""To import multiple scenarios"""
|
|
2720
3121
|
importScenarios(scenarios: [ScenarioPatch!]!): Boolean!
|
|
2721
3122
|
|
|
2722
|
-
"""
|
|
2723
|
-
To import multiple Terminologies
|
|
2724
|
-
"""
|
|
3123
|
+
"""To import multiple Terminologies"""
|
|
2725
3124
|
importTerminologies(terminologies: [TerminologyPatch!]!): Boolean!
|
|
2726
3125
|
|
|
2727
|
-
"""
|
|
2728
|
-
|
|
2729
|
-
|
|
3126
|
+
"""To import multiple Themes"""
|
|
3127
|
+
importThemes(themes: [ThemePatch!]!): Boolean!
|
|
3128
|
+
|
|
3129
|
+
"""To inactivate user"""
|
|
2730
3130
|
inactivateUser(userId: String!): Boolean!
|
|
2731
3131
|
inviteCustomer(customerDomainName: String!): Boolean!
|
|
2732
3132
|
|
|
2733
|
-
"""
|
|
2734
|
-
To invite new user
|
|
2735
|
-
"""
|
|
3133
|
+
"""To invite new user"""
|
|
2736
3134
|
inviteUser(email: String!): Boolean!
|
|
2737
3135
|
|
|
2738
|
-
"""
|
|
2739
|
-
|
|
2740
|
-
|
|
3136
|
+
"""To issue standard ActivityInstance"""
|
|
3137
|
+
issueActivityInstance(activityInstance: ActivityInstanceIssue!): ActivityInstance!
|
|
3138
|
+
|
|
3139
|
+
"""To make the board to join the group"""
|
|
2741
3140
|
joinGroup(boardIds: [String!]!, id: String!): Group!
|
|
2742
3141
|
|
|
2743
|
-
"""
|
|
2744
|
-
To make the board to join the play group
|
|
2745
|
-
"""
|
|
3142
|
+
"""To make the board to join the play group"""
|
|
2746
3143
|
joinPlayGroup(boardIds: [String!]!, id: String!): PlayGroup!
|
|
2747
3144
|
|
|
2748
|
-
"""
|
|
2749
|
-
To make the board to leave from the play group
|
|
2750
|
-
"""
|
|
3145
|
+
"""To make the board to leave from the play group"""
|
|
2751
3146
|
leavePlayGroup(boardIds: [String!]!, id: String!): PlayGroup!
|
|
2752
3147
|
linkProduct(patches: [ProductPatch!]!, productSetId: String!): Boolean!
|
|
2753
3148
|
linkProductBundle(patches: [ProductBundleSettingPatch!]!, productBundleId: String!): Boolean!
|
|
2754
3149
|
|
|
2755
|
-
"""
|
|
2756
|
-
To link product combination for kitting process
|
|
2757
|
-
"""
|
|
3150
|
+
"""To link product combination for kitting process"""
|
|
2758
3151
|
linkProductCombination(patches: [ProductCombinationSettingPatch!]!, productCombinationId: String!): Boolean!
|
|
2759
3152
|
multipleUpload(files: [Upload!]!): [Attachment!]!
|
|
2760
3153
|
|
|
2761
3154
|
"""
|
|
2762
|
-
To
|
|
3155
|
+
To pick an activity ActivityInstance voluntarily. [cautions] This resolver will return a assigned ActivityThread.
|
|
2763
3156
|
"""
|
|
3157
|
+
pickActivityInstance(id: String!): ActivityThread
|
|
3158
|
+
|
|
3159
|
+
"""To reference of pending job progress"""
|
|
2764
3160
|
referencePendingJob(tag: String!): String!
|
|
2765
3161
|
|
|
2766
|
-
"""
|
|
2767
|
-
To reference of file upload
|
|
2768
|
-
"""
|
|
3162
|
+
"""To reference of file upload"""
|
|
2769
3163
|
referenceUpload(files: [Upload!]!): String!
|
|
2770
3164
|
|
|
2771
|
-
"""
|
|
2772
|
-
To refresh oauth2 access token
|
|
2773
|
-
"""
|
|
3165
|
+
"""To refresh oauth2 access token"""
|
|
2774
3166
|
refreshOauth2AccessToken(id: String!): Oauth2Client!
|
|
3167
|
+
|
|
3168
|
+
"""To reject ActivityApproval"""
|
|
3169
|
+
rejectActivityApproval(comment: String, id: String!): ActivityApproval
|
|
2775
3170
|
renewApplicationAccessToken(id: String!, scope: String!): AccessToken!
|
|
2776
3171
|
|
|
2777
|
-
"""
|
|
2778
|
-
To reset password to default
|
|
2779
|
-
"""
|
|
3172
|
+
"""To reset password to default"""
|
|
2780
3173
|
resetPasswordToDefault(userId: String!): Boolean!
|
|
2781
3174
|
|
|
3175
|
+
"""To restart ActivityThread"""
|
|
3176
|
+
restartActivityThread(id: String!, output: Object, reason: String): ActivityThread
|
|
3177
|
+
|
|
2782
3178
|
"""
|
|
2783
3179
|
To run new scenario instance and will return the result after the scenario stop.
|
|
2784
3180
|
"""
|
|
2785
3181
|
runScenario(instanceName: String, scenarioName: String!, variables: Object): ScenarioInstance!
|
|
3182
|
+
|
|
3183
|
+
"""To approve ActivityApproval"""
|
|
3184
|
+
saveActivityApproval(comment: String, id: String!): ActivityApproval
|
|
3185
|
+
|
|
3186
|
+
"""To save ActivityThread information"""
|
|
3187
|
+
saveActivityThread(id: String!, save: ActivityThreadSave!): ActivityThread!
|
|
2786
3188
|
sendInvitation(email: String!, reference: String!, type: String!): Invitation!
|
|
2787
3189
|
singleUpload(file: Upload!): Attachment!
|
|
2788
3190
|
|
|
2789
|
-
"""
|
|
2790
|
-
|
|
2791
|
-
|
|
3191
|
+
"""To start posting activity based on the schedule of the given activity"""
|
|
3192
|
+
startActivitySchedule(activityId: String!): Activity!
|
|
3193
|
+
|
|
3194
|
+
"""To start ActivityThread"""
|
|
3195
|
+
startActivityThread(id: String!, output: Object, reason: String): ActivityThread
|
|
3196
|
+
|
|
3197
|
+
"""To start data collection schedule for the given dataset"""
|
|
3198
|
+
startDataCollectionSchedule(dataSetId: String!): DataSet!
|
|
3199
|
+
|
|
3200
|
+
"""To start new scenario instance"""
|
|
2792
3201
|
startScenario(instanceName: String, scenarioName: String!, variables: Object): ScenarioInstance!
|
|
2793
3202
|
|
|
2794
|
-
"""
|
|
2795
|
-
|
|
2796
|
-
|
|
3203
|
+
"""To start posting scenario based on the schedule of the given scenario"""
|
|
3204
|
+
startScenarioSchedule(scenarioId: String!): Scenario!
|
|
3205
|
+
|
|
3206
|
+
"""To stop posting activity based on the schedule of the given activity"""
|
|
3207
|
+
stopActivitySchedule(activityId: String!): Activity
|
|
3208
|
+
|
|
3209
|
+
"""To stop data collection schedule for the given dataset"""
|
|
3210
|
+
stopDataCollectionSchedule(dataSetId: String!): DataSet
|
|
3211
|
+
|
|
3212
|
+
"""To start new scenario instance"""
|
|
2797
3213
|
stopScenario(instanceName: String): ScenarioInstance
|
|
2798
|
-
|
|
3214
|
+
|
|
3215
|
+
"""To stop posting scenario based on the schedule of the given scenario"""
|
|
3216
|
+
stopScenarioSchedule(scenarioId: String!): Scenario
|
|
3217
|
+
|
|
3218
|
+
"""To submit a ActivityThread"""
|
|
3219
|
+
submitActivityThread(id: String!, output: Object, reason: String): ActivityThread!
|
|
2799
3220
|
|
|
2800
3221
|
"""
|
|
2801
|
-
To
|
|
3222
|
+
To synchronize privilege master from graphql directives. Only superuser is permitted.
|
|
2802
3223
|
"""
|
|
3224
|
+
synchronizePrivilegeMaster(privilege: NewPrivilege!): Boolean!
|
|
3225
|
+
terminateContract(partnerName: String!): Boolean!
|
|
3226
|
+
|
|
3227
|
+
"""To transfer owner of domain"""
|
|
2803
3228
|
transferOwner(email: String!): Boolean!
|
|
2804
3229
|
undeleteProducts(ids: [String!]!): Boolean!
|
|
3230
|
+
|
|
3231
|
+
"""To modify Activity information"""
|
|
3232
|
+
updateActivity(id: String!, patch: ActivityPatch!): Activity!
|
|
3233
|
+
|
|
3234
|
+
"""To modify ActivityTemplate information"""
|
|
3235
|
+
updateActivityTemplate(id: String!, patch: ActivityTemplatePatch!): ActivityTemplate!
|
|
3236
|
+
|
|
3237
|
+
"""To save ActivityThread Output Data"""
|
|
3238
|
+
updateActivityThreadOutput(id: String!, output: Object!): ActivityThread!
|
|
2805
3239
|
updateAppliance(id: String!, patch: AppliancePatch!): Appliance!
|
|
2806
3240
|
updateApplication(id: String!, patch: ApplicationPatch!): Application!
|
|
2807
3241
|
|
|
2808
|
-
"""
|
|
2809
|
-
To modify ApprovalLine information
|
|
2810
|
-
"""
|
|
3242
|
+
"""To modify ApprovalLine information"""
|
|
2811
3243
|
updateApprovalLine(id: String!, patch: ApprovalLinePatch!): ApprovalLine!
|
|
2812
3244
|
updateAttachment(id: String!, patch: AttachmentPatch!): Attachment!
|
|
3245
|
+
|
|
3246
|
+
"""To modify AttributeSet information"""
|
|
3247
|
+
updateAttributeSet(id: String!, patch: AttributeSetPatch!): AttributeSet!
|
|
2813
3248
|
updateBizOption(name: String!, patch: BizOptionPatch!): BizOption!
|
|
2814
3249
|
updateBizOptionDetail(name: String!, patch: BizOptionDetailPatch!): BizOptionDetail!
|
|
2815
3250
|
updateBizplace(name: String!, patch: BizplacePatch!): Bizplace!
|
|
2816
3251
|
updateBizplaceCheckDomain(name: String!, patch: BizplacePatch!): Bizplace!
|
|
2817
3252
|
|
|
2818
|
-
"""
|
|
2819
|
-
To modify Board information
|
|
2820
|
-
"""
|
|
3253
|
+
"""To modify Board information"""
|
|
2821
3254
|
updateBoard(id: String!, patch: BoardPatch!): Board!
|
|
2822
3255
|
|
|
2823
|
-
"""
|
|
2824
|
-
|
|
2825
|
-
|
|
3256
|
+
"""To modify BoardTemplate information"""
|
|
3257
|
+
updateBoardTemplate(id: String!, patch: BoardTemplatePatch!): BoardTemplate!
|
|
3258
|
+
|
|
3259
|
+
"""To modify CommonCode information"""
|
|
2826
3260
|
updateCommonCode(name: String!, patch: CommonCodePatch!): CommonCode!
|
|
2827
3261
|
|
|
2828
|
-
"""
|
|
2829
|
-
To modify CommonCodeDetail information
|
|
2830
|
-
"""
|
|
3262
|
+
"""To modify CommonCodeDetail information"""
|
|
2831
3263
|
updateCommonCodeDetail(id: String!, patch: CommonCodeDetailPatch!): CommonCodeDetail!
|
|
2832
3264
|
updateCompany(name: String!, patch: CompanyPatch!): Company!
|
|
2833
3265
|
|
|
2834
|
-
"""
|
|
2835
|
-
To modify connection information
|
|
2836
|
-
"""
|
|
3266
|
+
"""To modify connection information"""
|
|
2837
3267
|
updateConnection(name: String!, patch: ConnectionPatch!): Connection!
|
|
2838
3268
|
|
|
2839
|
-
"""
|
|
2840
|
-
To modify Contact information
|
|
2841
|
-
"""
|
|
3269
|
+
"""To modify Contact information"""
|
|
2842
3270
|
updateContact(id: String!, patch: ContactPatch!): Contact!
|
|
2843
3271
|
updateContactPoint(id: String!, patch: ContactPointPatch!): ContactPoint!
|
|
2844
3272
|
|
|
2845
|
-
"""
|
|
2846
|
-
To modify DataArchive information
|
|
2847
|
-
"""
|
|
3273
|
+
"""To modify DataArchive information"""
|
|
2848
3274
|
updateDataArchive(id: String!, patch: DataArchivePatch!): DataArchive!
|
|
2849
3275
|
|
|
2850
|
-
"""
|
|
2851
|
-
To modify DataKeySet information
|
|
2852
|
-
"""
|
|
3276
|
+
"""To modify DataKeySet information"""
|
|
2853
3277
|
updateDataKeySet(id: String!, patch: DataKeySetPatch!): DataKeySet!
|
|
2854
3278
|
|
|
2855
|
-
"""
|
|
2856
|
-
To modify DataOoc information
|
|
2857
|
-
"""
|
|
3279
|
+
"""To modify DataOoc information"""
|
|
2858
3280
|
updateDataOoc(id: String!, patch: DataOocPatch!): DataOoc!
|
|
2859
3281
|
|
|
2860
|
-
"""
|
|
2861
|
-
To modify DataSensor information
|
|
2862
|
-
"""
|
|
3282
|
+
"""To modify DataSensor information"""
|
|
2863
3283
|
updateDataSensor(id: String!, patch: DataSensorPatch!): DataSensor!
|
|
2864
3284
|
|
|
2865
|
-
"""
|
|
2866
|
-
To modify DataSet information
|
|
2867
|
-
"""
|
|
3285
|
+
"""To modify DataSet information"""
|
|
2868
3286
|
updateDataSet(id: String!, patch: DataSetPatch!): DataSet!
|
|
2869
3287
|
|
|
2870
|
-
"""
|
|
2871
|
-
To modify Department information
|
|
2872
|
-
"""
|
|
3288
|
+
"""To modify Department information"""
|
|
2873
3289
|
updateDepartment(id: String!, patch: DepartmentPatch!): Department!
|
|
2874
3290
|
|
|
2875
|
-
"""
|
|
2876
|
-
To update domain (Only superuser is granted this privilege.)
|
|
2877
|
-
"""
|
|
3291
|
+
"""To update domain (Only superuser is granted this privilege.)"""
|
|
2878
3292
|
updateDomain(name: String!, patch: DomainPatch!): Domain!
|
|
2879
3293
|
|
|
2880
|
-
"""
|
|
2881
|
-
To update multiple domains (Only superuser is granted this privilege.)
|
|
2882
|
-
"""
|
|
3294
|
+
"""To update multiple domains (Only superuser is granted this privilege.)"""
|
|
2883
3295
|
updateDomains(patches: [DomainPatch!]!): Boolean!
|
|
2884
3296
|
|
|
2885
|
-
"""
|
|
2886
|
-
To modify Employee information
|
|
2887
|
-
"""
|
|
3297
|
+
"""To modify Employee information"""
|
|
2888
3298
|
updateEmployee(id: String!, patch: EmployeePatch!): Employee!
|
|
2889
3299
|
|
|
2890
|
-
"""
|
|
2891
|
-
To modify Entity' information
|
|
2892
|
-
"""
|
|
3300
|
+
"""To modify Entity' information"""
|
|
2893
3301
|
updateEntity(id: String!, patch: EntityPatch!): Entity!
|
|
2894
3302
|
|
|
2895
|
-
"""
|
|
2896
|
-
To modify EntityColumn information
|
|
2897
|
-
"""
|
|
3303
|
+
"""To modify EntityColumn information"""
|
|
2898
3304
|
updateEntityColumn(id: String!, patch: EntityColumnPatch!): EntityColumn!
|
|
2899
3305
|
|
|
2900
|
-
"""
|
|
2901
|
-
To modify Font information
|
|
2902
|
-
"""
|
|
3306
|
+
"""To modify Font information"""
|
|
2903
3307
|
updateFont(id: String!, patch: FontPatch!): Font!
|
|
2904
3308
|
|
|
2905
|
-
"""
|
|
2906
|
-
To modify Group information
|
|
2907
|
-
"""
|
|
3309
|
+
"""To modify Group information"""
|
|
2908
3310
|
updateGroup(id: String!, patch: GroupPatch!): Group!
|
|
2909
3311
|
|
|
2910
|
-
"""
|
|
2911
|
-
To modify LiteMenu information
|
|
2912
|
-
"""
|
|
3312
|
+
"""To modify LiteMenu information"""
|
|
2913
3313
|
updateLiteMenu(id: String!, patch: LiteMenuPatch!): LiteMenu!
|
|
2914
3314
|
|
|
2915
|
-
"""
|
|
2916
|
-
To modify Menu information
|
|
2917
|
-
"""
|
|
3315
|
+
"""To modify Menu information"""
|
|
2918
3316
|
updateMenu(id: String!, patch: MenuPatch!): Menu!
|
|
2919
3317
|
|
|
2920
|
-
"""
|
|
2921
|
-
To modify MenuButton information
|
|
2922
|
-
"""
|
|
3318
|
+
"""To modify MenuButton information"""
|
|
2923
3319
|
updateMenuButton(id: String!, patch: MenuButtonPatch!): MenuButton!
|
|
2924
3320
|
|
|
2925
|
-
"""
|
|
2926
|
-
To modify MenuColumn information
|
|
2927
|
-
"""
|
|
3321
|
+
"""To modify MenuColumn information"""
|
|
2928
3322
|
updateMenuColumn(id: String!, patch: MenuColumnPatch!): MenuColumn!
|
|
2929
3323
|
|
|
2930
|
-
"""
|
|
2931
|
-
To modify MenuDetail information
|
|
2932
|
-
"""
|
|
3324
|
+
"""To modify MenuDetail information"""
|
|
2933
3325
|
updateMenuDetail(id: String!, patch: MenuDetailPatch!): MenuDetail!
|
|
2934
3326
|
|
|
2935
|
-
"""
|
|
2936
|
-
To modify MenuDetailButton information
|
|
2937
|
-
"""
|
|
3327
|
+
"""To modify MenuDetailButton information"""
|
|
2938
3328
|
updateMenuDetailButton(id: String!, patch: MenuDetailButtonPatch!): MenuDetailButton!
|
|
2939
3329
|
|
|
2940
|
-
"""
|
|
2941
|
-
To modify MenuDetailColumn information
|
|
2942
|
-
"""
|
|
3330
|
+
"""To modify MenuDetailColumn information"""
|
|
2943
3331
|
updateMenuDetailColumn(id: String!, patch: MenuDetailColumnPatch!): MenuDetailColumn!
|
|
2944
3332
|
|
|
2945
|
-
"""
|
|
2946
|
-
|
|
2947
|
-
|
|
3333
|
+
"""To modify multiple Activities' information"""
|
|
3334
|
+
updateMultipleActivity(patches: [ActivityPatch!]!): [Activity!]!
|
|
3335
|
+
|
|
3336
|
+
"""To modify multiple ActivityTemplates' information"""
|
|
3337
|
+
updateMultipleActivityTemplate(patches: [ActivityTemplatePatch!]!): [ActivityTemplate!]!
|
|
3338
|
+
|
|
3339
|
+
"""To modify multiple ApprovalLines' information"""
|
|
2948
3340
|
updateMultipleApprovalLine(patches: [ApprovalLinePatch!]!): [ApprovalLine!]!
|
|
3341
|
+
|
|
3342
|
+
"""To modify multiple AttributeSets' information"""
|
|
3343
|
+
updateMultipleAttributeSet(patches: [AttributeSetPatch!]!): [AttributeSet!]!
|
|
2949
3344
|
updateMultipleBizplace(patches: [BizplacePatch!]!): [Bizplace!]!
|
|
2950
3345
|
|
|
2951
|
-
"""
|
|
2952
|
-
To modify multiple CommonCodes' information
|
|
2953
|
-
"""
|
|
3346
|
+
"""To modify multiple CommonCodes' information"""
|
|
2954
3347
|
updateMultipleCommonCode(patches: [CommonCodePatch!]!): [CommonCode!]!
|
|
2955
3348
|
|
|
2956
|
-
"""
|
|
2957
|
-
To modify multiple CommonCodeDetails' information
|
|
2958
|
-
"""
|
|
3349
|
+
"""To modify multiple CommonCodeDetails' information"""
|
|
2959
3350
|
updateMultipleCommonCodeDetail(patches: [CommonCodeDetailPatch!]!): [CommonCodeDetail!]!
|
|
2960
3351
|
updateMultipleCompany(patches: [CompanyPatch!]!): [Company!]!
|
|
2961
3352
|
|
|
2962
|
-
"""
|
|
2963
|
-
To modify multiple connections' information
|
|
2964
|
-
"""
|
|
3353
|
+
"""To modify multiple connections' information"""
|
|
2965
3354
|
updateMultipleConnection(patches: [ConnectionPatch!]!): [Connection!]!
|
|
2966
3355
|
|
|
2967
|
-
"""
|
|
2968
|
-
To modify multiple Contacts' information
|
|
2969
|
-
"""
|
|
3356
|
+
"""To modify multiple Contacts' information"""
|
|
2970
3357
|
updateMultipleContact(patches: [ContactPatch!]!): [Contact!]!
|
|
2971
3358
|
updateMultipleContactPoint(patches: [ContactPointPatch!]!): [ContactPoint!]!
|
|
2972
3359
|
|
|
2973
|
-
"""
|
|
2974
|
-
To modify multiple DataArchives' information
|
|
2975
|
-
"""
|
|
3360
|
+
"""To modify multiple DataArchives' information"""
|
|
2976
3361
|
updateMultipleDataArchive(patches: [DataArchivePatch!]!): [DataArchive!]!
|
|
2977
3362
|
|
|
2978
|
-
"""
|
|
2979
|
-
To modify multiple DataKeySets' information
|
|
2980
|
-
"""
|
|
3363
|
+
"""To modify multiple DataKeySets' information"""
|
|
2981
3364
|
updateMultipleDataKeySet(patches: [DataKeySetPatch!]!): [DataKeySet!]!
|
|
2982
3365
|
|
|
2983
|
-
"""
|
|
2984
|
-
To modify multiple DataSensors' information
|
|
2985
|
-
"""
|
|
3366
|
+
"""To modify multiple DataSensors' information"""
|
|
2986
3367
|
updateMultipleDataSensor(patches: [DataSensorPatch!]!): [DataSensor!]!
|
|
2987
3368
|
|
|
2988
|
-
"""
|
|
2989
|
-
To modify multiple DataSets' information
|
|
2990
|
-
"""
|
|
3369
|
+
"""To modify multiple DataSets' information"""
|
|
2991
3370
|
updateMultipleDataSet(patches: [DataSetPatch!]!): [DataSet!]!
|
|
2992
3371
|
|
|
2993
|
-
"""
|
|
2994
|
-
To modify multiple Departments' information
|
|
2995
|
-
"""
|
|
3372
|
+
"""To modify multiple Departments' information"""
|
|
2996
3373
|
updateMultipleDepartment(patches: [DepartmentPatch!]!): [Department!]!
|
|
2997
3374
|
|
|
2998
|
-
"""
|
|
2999
|
-
To modify multiple Employees' information
|
|
3000
|
-
"""
|
|
3375
|
+
"""To modify multiple Employees' information"""
|
|
3001
3376
|
updateMultipleEmployee(patches: [EmployeePatch!]!): [Employee!]!
|
|
3002
3377
|
|
|
3003
|
-
"""
|
|
3004
|
-
To modify multiple Entitys' information
|
|
3005
|
-
"""
|
|
3378
|
+
"""To modify multiple Entitys' information"""
|
|
3006
3379
|
updateMultipleEntity(patches: [EntityPatch!]!): [Entity!]!
|
|
3007
3380
|
|
|
3008
|
-
"""
|
|
3009
|
-
To modify multiple Entitys' information
|
|
3010
|
-
"""
|
|
3381
|
+
"""To modify multiple Entitys' information"""
|
|
3011
3382
|
updateMultipleEntityColumn(patches: [EntityColumnPatch!]!): [EntityColumn!]!
|
|
3012
3383
|
|
|
3013
|
-
"""
|
|
3014
|
-
To modify multiple Menus' information
|
|
3015
|
-
"""
|
|
3384
|
+
"""To modify multiple Menus' information"""
|
|
3016
3385
|
updateMultipleMenu(patches: [MenuPatch!]!): [Menu!]!
|
|
3017
3386
|
|
|
3018
|
-
"""
|
|
3019
|
-
To modify multiple ApprovalLines' information for current user
|
|
3020
|
-
"""
|
|
3387
|
+
"""To modify multiple ApprovalLines' information for current user"""
|
|
3021
3388
|
updateMultipleMyApprovalLine(patches: [ApprovalLinePatch!]!): [ApprovalLine!]!
|
|
3022
3389
|
|
|
3023
|
-
"""
|
|
3024
|
-
|
|
3025
|
-
|
|
3390
|
+
"""To modify multiple Notificationes' information"""
|
|
3391
|
+
updateMultipleNotification(patches: [NotificationPatch!]!): [Notification!]!
|
|
3392
|
+
|
|
3393
|
+
"""To modify multiple NotificationRules' information"""
|
|
3394
|
+
updateMultipleNotificationRule(patches: [NotificationRulePatch!]!): [NotificationRule!]!
|
|
3395
|
+
|
|
3396
|
+
"""To modify multiple Operations' information"""
|
|
3026
3397
|
updateMultipleOperation(patches: [OperationPatch!]!): [Operation!]!
|
|
3027
3398
|
|
|
3028
|
-
"""
|
|
3029
|
-
To modify multiple PartnerSettings' information
|
|
3030
|
-
"""
|
|
3399
|
+
"""To modify multiple PartnerSettings' information"""
|
|
3031
3400
|
updateMultiplePartnerSetting(patches: [PartnerSettingPatch!]!): [PartnerSetting!]!
|
|
3032
3401
|
|
|
3033
|
-
"""
|
|
3034
|
-
To modify multiple PayloadLogs' information
|
|
3035
|
-
"""
|
|
3402
|
+
"""To modify multiple PayloadLogs' information"""
|
|
3036
3403
|
updateMultiplePayloadLog(patches: [PayloadLogPatch!]!): [PayloadLog!]!
|
|
3037
3404
|
updateMultipleProduct(patches: [ProductPatch!]!): [Product!]!
|
|
3038
3405
|
updateMultipleProductBundle(patches: [ProductBundlePatch!]!): [ProductBundle!]!
|
|
3039
3406
|
updateMultipleProductBundleSetting(patches: [ProductBundleSettingPatch!]!): [ProductBundleSetting!]!
|
|
3040
3407
|
|
|
3041
|
-
"""
|
|
3042
|
-
|
|
3043
|
-
"""
|
|
3044
|
-
updateMultipleProductCombination(
|
|
3045
|
-
patches: [ProductCombinationPatch!]!
|
|
3046
|
-
productDetailId: String!
|
|
3047
|
-
): [ProductCombination!]!
|
|
3408
|
+
"""To modify multiple ProductCombinations' information"""
|
|
3409
|
+
updateMultipleProductCombination(patches: [ProductCombinationPatch!]!, productDetailId: String!): [ProductCombination!]!
|
|
3048
3410
|
|
|
3049
|
-
"""
|
|
3050
|
-
To modify multiple ProductCombinationSettings' information
|
|
3051
|
-
"""
|
|
3411
|
+
"""To modify multiple ProductCombinationSettings' information"""
|
|
3052
3412
|
updateMultipleProductCombinationSetting(patches: [ProductCombinationSettingPatch!]!): [ProductCombinationSetting!]!
|
|
3053
3413
|
updateMultipleProductDetail(patches: [ProductDetailPatch!]!, productId: String!): [ProductDetail!]!
|
|
3054
|
-
updateMultipleProductDetailBizplaceSetting(
|
|
3055
|
-
patches: [ProductDetailBizplaceSettingPatch!]!
|
|
3056
|
-
productId: String!
|
|
3057
|
-
): [ProductDetailBizplaceSetting!]!
|
|
3414
|
+
updateMultipleProductDetailBizplaceSetting(patches: [ProductDetailBizplaceSettingPatch!]!, productId: String!): [ProductDetailBizplaceSetting!]!
|
|
3058
3415
|
updateMultipleProductSet(patches: [ProductSetPatch!]!): [ProductSet!]!
|
|
3059
3416
|
|
|
3060
|
-
"""
|
|
3061
|
-
To modify multiple Routings' information
|
|
3062
|
-
"""
|
|
3417
|
+
"""To modify multiple Routings' information"""
|
|
3063
3418
|
updateMultipleRouting(patches: [RoutingPatch!]!): [Routing!]!
|
|
3064
3419
|
|
|
3065
|
-
"""
|
|
3066
|
-
To modify multiple RoutingItems' information
|
|
3067
|
-
"""
|
|
3420
|
+
"""To modify multiple RoutingItems' information"""
|
|
3068
3421
|
updateMultipleRoutingItem(patches: [RoutingItemPatch!]!): [RoutingItem!]!
|
|
3069
3422
|
|
|
3070
|
-
"""
|
|
3071
|
-
To modify multiple scenarios' information
|
|
3072
|
-
"""
|
|
3423
|
+
"""To modify multiple scenarios' information"""
|
|
3073
3424
|
updateMultipleScenario(patches: [ScenarioPatch!]!): [Scenario!]!
|
|
3074
3425
|
|
|
3075
|
-
"""
|
|
3076
|
-
To modify multiple Settings' information
|
|
3077
|
-
"""
|
|
3426
|
+
"""To modify multiple Settings' information"""
|
|
3078
3427
|
updateMultipleSetting(patches: [SettingPatch!]!): [Setting!]!
|
|
3079
3428
|
|
|
3080
|
-
"""
|
|
3081
|
-
To modify multiple steps' in a scenario
|
|
3082
|
-
"""
|
|
3429
|
+
"""To modify multiple steps' in a scenario"""
|
|
3083
3430
|
updateMultipleStep(patches: [StepPatch!]!, scenarioId: String!): [Step!]!
|
|
3084
3431
|
|
|
3085
|
-
"""
|
|
3086
|
-
To modify multiple Terminologies' information
|
|
3087
|
-
"""
|
|
3432
|
+
"""To modify multiple Terminologies' information"""
|
|
3088
3433
|
updateMultipleTerminologies(patches: [TerminologyPatch!]!): [Terminology!]!
|
|
3089
3434
|
|
|
3090
|
-
"""
|
|
3091
|
-
|
|
3092
|
-
|
|
3435
|
+
"""To modify multiple Themes' information"""
|
|
3436
|
+
updateMultipleTheme(patches: [ThemePatch!]!): [Theme!]!
|
|
3437
|
+
|
|
3438
|
+
"""To modify multiple users information"""
|
|
3093
3439
|
updateMultipleUser(patches: [UserPatch!]!): [User!]!
|
|
3094
3440
|
|
|
3095
|
-
"""
|
|
3096
|
-
To modify multiple WorkShifts' information
|
|
3097
|
-
"""
|
|
3441
|
+
"""To modify multiple WorkShifts' information"""
|
|
3098
3442
|
updateMultipleWorkShift(patches: [WorkShiftPatch!]!): [WorkShift!]!
|
|
3099
3443
|
updateMultipleWorker(patches: [WorkerPatch!]!): [Worker!]!
|
|
3100
3444
|
|
|
3101
|
-
"""
|
|
3102
|
-
To modify ApprovalLine information for current user
|
|
3103
|
-
"""
|
|
3445
|
+
"""To modify ApprovalLine information for current user"""
|
|
3104
3446
|
updateMyApprovalLine(id: String!, patch: ApprovalLinePatch!): ApprovalLine!
|
|
3105
3447
|
|
|
3106
|
-
"""
|
|
3107
|
-
|
|
3108
|
-
|
|
3448
|
+
"""To modify Notification information"""
|
|
3449
|
+
updateNotification(id: String!, patch: NotificationPatch!): Notification!
|
|
3450
|
+
|
|
3451
|
+
"""To modify NotificationRule information"""
|
|
3452
|
+
updateNotificationRule(id: String!, patch: NotificationRulePatch!): NotificationRule!
|
|
3453
|
+
|
|
3454
|
+
"""To modify Oauth2Client information"""
|
|
3109
3455
|
updateOauth2Client(id: String!, patch: Oauth2ClientPatch!): Oauth2Client!
|
|
3110
3456
|
|
|
3111
|
-
"""
|
|
3112
|
-
To modify Operation information
|
|
3113
|
-
"""
|
|
3457
|
+
"""To modify Operation information"""
|
|
3114
3458
|
updateOperation(id: String!, patch: OperationPatch!): Operation!
|
|
3115
3459
|
|
|
3116
|
-
"""
|
|
3117
|
-
To modify PayloadLog information
|
|
3118
|
-
"""
|
|
3460
|
+
"""To modify PayloadLog information"""
|
|
3119
3461
|
updatePayloadLog(id: String!, patch: PayloadLogPatch!): PayloadLog!
|
|
3120
3462
|
|
|
3121
|
-
"""
|
|
3122
|
-
To modify PlayGroup information
|
|
3123
|
-
"""
|
|
3463
|
+
"""To modify PlayGroup information"""
|
|
3124
3464
|
updatePlayGroup(id: String!, patch: PlayGroupPatch!): PlayGroup!
|
|
3125
3465
|
|
|
3126
|
-
"""
|
|
3127
|
-
To modify privilege information
|
|
3128
|
-
"""
|
|
3466
|
+
"""To modify privilege information"""
|
|
3129
3467
|
updatePrivilege(category: String!, name: String!, patch: PrivilegePatch!): Privilege!
|
|
3130
3468
|
updateProduct(id: String!, patch: ProductPatch!): Product!
|
|
3131
3469
|
updateProductBundle(name: String!, patch: ProductBundlePatch!): ProductBundle!
|
|
3132
3470
|
|
|
3133
|
-
"""
|
|
3134
|
-
To modify ProductCombination information
|
|
3135
|
-
"""
|
|
3471
|
+
"""To modify ProductCombination information"""
|
|
3136
3472
|
updateProductCombination(id: String!, patch: ProductCombinationPatch!): ProductCombination!
|
|
3137
3473
|
|
|
3138
|
-
"""
|
|
3139
|
-
To modify ProductCombinationSetting information
|
|
3140
|
-
"""
|
|
3474
|
+
"""To modify ProductCombinationSetting information"""
|
|
3141
3475
|
updateProductCombinationSetting(id: String!, patch: ProductCombinationSettingPatch!): ProductCombinationSetting!
|
|
3142
3476
|
updateProductDetail(id: String!, patch: ProductDetailPatch!): ProductDetail!
|
|
3143
|
-
updateProductDetailBizplaceSetting(
|
|
3144
|
-
name: String!
|
|
3145
|
-
patch: ProductDetailBizplaceSettingPatch!
|
|
3146
|
-
): ProductDetailBizplaceSetting!
|
|
3477
|
+
updateProductDetailBizplaceSetting(name: String!, patch: ProductDetailBizplaceSettingPatch!): ProductDetailBizplaceSetting!
|
|
3147
3478
|
updateProductSet(id: String!, patch: ProductSetPatch!): ProductSet!
|
|
3148
3479
|
|
|
3149
|
-
"""
|
|
3150
|
-
To modify role information
|
|
3151
|
-
"""
|
|
3480
|
+
"""To modify role information"""
|
|
3152
3481
|
updateRole(id: String!, patch: RolePatch!): Role!
|
|
3153
3482
|
|
|
3154
|
-
"""
|
|
3155
|
-
To update role Menu
|
|
3156
|
-
"""
|
|
3483
|
+
"""To update role Menu"""
|
|
3157
3484
|
updateRoleMenu(isCheckedMenu: Boolean!, roleId: String!, targetMenuId: String!): Menu!
|
|
3158
3485
|
|
|
3159
|
-
"""
|
|
3160
|
-
To update role Menu
|
|
3161
|
-
"""
|
|
3486
|
+
"""To update role Menu"""
|
|
3162
3487
|
updateRoleMenus(isCheckedAll: Boolean!, parentMenuId: String!, roleId: String!): [Menu!]!
|
|
3163
3488
|
|
|
3164
|
-
"""
|
|
3165
|
-
To modify Routing information
|
|
3166
|
-
"""
|
|
3489
|
+
"""To modify Routing information"""
|
|
3167
3490
|
updateRouting(id: String!, patch: RoutingPatch!): Routing!
|
|
3168
3491
|
|
|
3169
|
-
"""
|
|
3170
|
-
To modify RoutingItem information
|
|
3171
|
-
"""
|
|
3492
|
+
"""To modify RoutingItem information"""
|
|
3172
3493
|
updateRoutingItem(id: String!, patch: RoutingItemPatch!): RoutingItem!
|
|
3173
3494
|
|
|
3174
|
-
"""
|
|
3175
|
-
To modify scenario information
|
|
3176
|
-
"""
|
|
3495
|
+
"""To modify scenario information"""
|
|
3177
3496
|
updateScenario(name: String!, patch: ScenarioPatch!): Scenario!
|
|
3178
3497
|
|
|
3179
|
-
"""
|
|
3180
|
-
To modify Setting information
|
|
3181
|
-
"""
|
|
3498
|
+
"""To modify Setting information"""
|
|
3182
3499
|
updateSetting(name: String!, patch: SettingPatch!): Setting!
|
|
3183
3500
|
|
|
3184
|
-
"""
|
|
3185
|
-
To modify Terminology information
|
|
3186
|
-
"""
|
|
3501
|
+
"""To modify Terminology information"""
|
|
3187
3502
|
updateTerminology(id: String!, patch: TerminologyPatch!): Terminology!
|
|
3188
3503
|
|
|
3189
|
-
"""
|
|
3190
|
-
|
|
3191
|
-
|
|
3504
|
+
"""To modify Theme information"""
|
|
3505
|
+
updateTheme(id: String!, patch: ThemePatch!): Theme!
|
|
3506
|
+
|
|
3507
|
+
"""To modify user information"""
|
|
3192
3508
|
updateUser(email: String!, patch: UserPatch!): User!
|
|
3193
3509
|
|
|
3194
|
-
"""
|
|
3195
|
-
|
|
3196
|
-
|
|
3197
|
-
|
|
3198
|
-
|
|
3510
|
+
"""To update roles for a user"""
|
|
3511
|
+
updateUserRoles(availableRoles: [ObjectRef!]!, selectedRoles: [ObjectRef!]!, userId: String!): User!
|
|
3512
|
+
updateWorker(id: String!, patch: WorkerPatch!): Worker!
|
|
3513
|
+
}
|
|
3514
|
+
|
|
3515
|
+
input NewActivity {
|
|
3516
|
+
active: Boolean
|
|
3517
|
+
activityType: String
|
|
3518
|
+
approvalLine: Object
|
|
3519
|
+
assigneeRole: ObjectRef
|
|
3520
|
+
assignees: Object
|
|
3521
|
+
description: String
|
|
3522
|
+
issuerRole: ObjectRef
|
|
3523
|
+
model: Object
|
|
3524
|
+
multiple: String
|
|
3525
|
+
name: String!
|
|
3526
|
+
priority: Float
|
|
3527
|
+
reportSource: String
|
|
3528
|
+
reportType: String
|
|
3529
|
+
schedule: String
|
|
3530
|
+
scheduleId: String
|
|
3531
|
+
searchKeys: Object
|
|
3532
|
+
standardTime: Float
|
|
3533
|
+
startingType: String
|
|
3534
|
+
state: String
|
|
3535
|
+
supervisoryRole: ObjectRef
|
|
3536
|
+
thumbnail: Upload
|
|
3537
|
+
timezone: String
|
|
3538
|
+
uiSource: String
|
|
3539
|
+
uiType: String
|
|
3540
|
+
viewSource: String
|
|
3541
|
+
viewType: String
|
|
3542
|
+
}
|
|
3543
|
+
|
|
3544
|
+
input NewActivityTemplate {
|
|
3545
|
+
active: Boolean
|
|
3546
|
+
activityType: String
|
|
3547
|
+
category: String
|
|
3548
|
+
description: String
|
|
3549
|
+
model: Object
|
|
3550
|
+
name: String!
|
|
3551
|
+
reportSource: String
|
|
3552
|
+
reportType: String
|
|
3553
|
+
state: String
|
|
3554
|
+
thumbnail: Upload
|
|
3555
|
+
uiSource: String
|
|
3556
|
+
uiType: String
|
|
3557
|
+
viewSource: String
|
|
3558
|
+
viewType: String
|
|
3559
|
+
visibility: String
|
|
3199
3560
|
}
|
|
3200
3561
|
|
|
3201
3562
|
input NewAppliance {
|
|
@@ -3234,6 +3595,13 @@ input NewAttachment {
|
|
|
3234
3595
|
refType: String
|
|
3235
3596
|
}
|
|
3236
3597
|
|
|
3598
|
+
input NewAttributeSet {
|
|
3599
|
+
active: Boolean
|
|
3600
|
+
description: String
|
|
3601
|
+
entity: String!
|
|
3602
|
+
items: [AttributeSetItemPatch!]
|
|
3603
|
+
}
|
|
3604
|
+
|
|
3237
3605
|
input NewBizOption {
|
|
3238
3606
|
description: String
|
|
3239
3607
|
name: String!
|
|
@@ -3262,6 +3630,14 @@ input NewBoard {
|
|
|
3262
3630
|
thumbnail: String
|
|
3263
3631
|
}
|
|
3264
3632
|
|
|
3633
|
+
input NewBoardTemplate {
|
|
3634
|
+
description: String
|
|
3635
|
+
model: String!
|
|
3636
|
+
name: String!
|
|
3637
|
+
state: BoardTemplateStatus
|
|
3638
|
+
thumbnail: String
|
|
3639
|
+
}
|
|
3640
|
+
|
|
3265
3641
|
input NewCommonCode {
|
|
3266
3642
|
description: String
|
|
3267
3643
|
details: [String!]
|
|
@@ -3390,6 +3766,8 @@ input NewDataSensor {
|
|
|
3390
3766
|
|
|
3391
3767
|
input NewDataSet {
|
|
3392
3768
|
active: Boolean
|
|
3769
|
+
approvalLine: Object
|
|
3770
|
+
assignees: Object
|
|
3393
3771
|
dataItems: [DataItemPatch!]
|
|
3394
3772
|
dataKeySet: ObjectRef
|
|
3395
3773
|
description: String
|
|
@@ -3404,6 +3782,7 @@ input NewDataSet {
|
|
|
3404
3782
|
reportType: String
|
|
3405
3783
|
reportView: String
|
|
3406
3784
|
schedule: String
|
|
3785
|
+
summaryPeriod: String
|
|
3407
3786
|
supervisoryRole: ObjectRef
|
|
3408
3787
|
timezone: String
|
|
3409
3788
|
type: String
|
|
@@ -3661,6 +4040,29 @@ input NewMenuDetailColumn {
|
|
|
3661
4040
|
virtualField: Boolean
|
|
3662
4041
|
}
|
|
3663
4042
|
|
|
4043
|
+
input NewNotification {
|
|
4044
|
+
body: String
|
|
4045
|
+
image: String
|
|
4046
|
+
ownerId: String
|
|
4047
|
+
property: Object
|
|
4048
|
+
subject: String
|
|
4049
|
+
timestamp: Timestamp
|
|
4050
|
+
title: String
|
|
4051
|
+
type: String
|
|
4052
|
+
url: String
|
|
4053
|
+
}
|
|
4054
|
+
|
|
4055
|
+
input NewNotificationRule {
|
|
4056
|
+
active: Boolean
|
|
4057
|
+
body: String
|
|
4058
|
+
description: String
|
|
4059
|
+
name: String!
|
|
4060
|
+
state: NotificationRuleStatus
|
|
4061
|
+
thumbnail: Upload
|
|
4062
|
+
title: String
|
|
4063
|
+
url: String
|
|
4064
|
+
}
|
|
4065
|
+
|
|
3664
4066
|
input NewOauth2Client {
|
|
3665
4067
|
accessToken: String
|
|
3666
4068
|
accessTokenUrl: String
|
|
@@ -3844,6 +4246,14 @@ input NewTerminology {
|
|
|
3844
4246
|
name: String!
|
|
3845
4247
|
}
|
|
3846
4248
|
|
|
4249
|
+
input NewTheme {
|
|
4250
|
+
active: Boolean
|
|
4251
|
+
description: String
|
|
4252
|
+
name: String!
|
|
4253
|
+
type: String
|
|
4254
|
+
value: Object
|
|
4255
|
+
}
|
|
4256
|
+
|
|
3847
4257
|
input NewUser {
|
|
3848
4258
|
description: String
|
|
3849
4259
|
email: String!
|
|
@@ -3869,21 +4279,90 @@ input NewWorker {
|
|
|
3869
4279
|
type: String!
|
|
3870
4280
|
}
|
|
3871
4281
|
|
|
4282
|
+
"""Entity for Notification"""
|
|
3872
4283
|
type Notification {
|
|
3873
|
-
body: String
|
|
4284
|
+
body: String
|
|
4285
|
+
createdAt: Timestamp
|
|
4286
|
+
creator: User
|
|
3874
4287
|
domain: Domain
|
|
4288
|
+
id: ID!
|
|
3875
4289
|
image: String
|
|
3876
|
-
|
|
4290
|
+
owner: User
|
|
4291
|
+
property: Object
|
|
4292
|
+
state: String
|
|
3877
4293
|
subject: String
|
|
3878
4294
|
timestamp: Date
|
|
3879
|
-
title: String
|
|
4295
|
+
title: String
|
|
3880
4296
|
type: String
|
|
4297
|
+
updatedAt: Timestamp
|
|
4298
|
+
updater: User
|
|
3881
4299
|
url: String
|
|
3882
4300
|
}
|
|
3883
4301
|
|
|
3884
|
-
|
|
3885
|
-
|
|
3886
|
-
|
|
4302
|
+
type NotificationList {
|
|
4303
|
+
items: [Notification!]!
|
|
4304
|
+
total: Int!
|
|
4305
|
+
}
|
|
4306
|
+
|
|
4307
|
+
input NotificationPatch {
|
|
4308
|
+
cuFlag: String
|
|
4309
|
+
id: ID
|
|
4310
|
+
state: NotificationStatus
|
|
4311
|
+
}
|
|
4312
|
+
|
|
4313
|
+
"""Entity for NotificationRule"""
|
|
4314
|
+
type NotificationRule {
|
|
4315
|
+
body: String
|
|
4316
|
+
channels: String
|
|
4317
|
+
createdAt: Timestamp
|
|
4318
|
+
creator: User
|
|
4319
|
+
deletedAt: Timestamp
|
|
4320
|
+
description: String
|
|
4321
|
+
domain: Domain
|
|
4322
|
+
id: ID!
|
|
4323
|
+
name: String
|
|
4324
|
+
|
|
4325
|
+
"""notification recipients."""
|
|
4326
|
+
recipients: [RecipientItem!]
|
|
4327
|
+
state: String
|
|
4328
|
+
thumbnail: String
|
|
4329
|
+
title: String
|
|
4330
|
+
updatedAt: Timestamp
|
|
4331
|
+
updater: User
|
|
4332
|
+
url: String
|
|
4333
|
+
version: Float
|
|
4334
|
+
}
|
|
4335
|
+
|
|
4336
|
+
type NotificationRuleList {
|
|
4337
|
+
items: [NotificationRule!]!
|
|
4338
|
+
total: Int!
|
|
4339
|
+
}
|
|
4340
|
+
|
|
4341
|
+
input NotificationRulePatch {
|
|
4342
|
+
body: String
|
|
4343
|
+
cuFlag: String
|
|
4344
|
+
description: String
|
|
4345
|
+
id: ID
|
|
4346
|
+
name: String
|
|
4347
|
+
state: NotificationRuleStatus
|
|
4348
|
+
thumbnail: Upload
|
|
4349
|
+
title: String
|
|
4350
|
+
url: String
|
|
4351
|
+
}
|
|
4352
|
+
|
|
4353
|
+
"""state enumeration of a notificationRule"""
|
|
4354
|
+
enum NotificationRuleStatus {
|
|
4355
|
+
DRAFT
|
|
4356
|
+
RELEASED
|
|
4357
|
+
}
|
|
4358
|
+
|
|
4359
|
+
"""state enumeration of a notification"""
|
|
4360
|
+
enum NotificationStatus {
|
|
4361
|
+
NOTREAD
|
|
4362
|
+
READ
|
|
4363
|
+
}
|
|
4364
|
+
|
|
4365
|
+
"""Entity for Oauth2Client"""
|
|
3887
4366
|
type Oauth2Client {
|
|
3888
4367
|
accessToken: String
|
|
3889
4368
|
accessTokenUrl: String
|
|
@@ -3940,89 +4419,61 @@ input Oauth2ClientPatch {
|
|
|
3940
4419
|
webhook: String
|
|
3941
4420
|
}
|
|
3942
4421
|
|
|
3943
|
-
"""
|
|
3944
|
-
Can be anything
|
|
3945
|
-
"""
|
|
4422
|
+
"""Can be anything"""
|
|
3946
4423
|
scalar Object
|
|
3947
4424
|
|
|
3948
4425
|
input ObjectRef {
|
|
3949
|
-
"""
|
|
3950
|
-
Field description
|
|
3951
|
-
"""
|
|
4426
|
+
"""Field description"""
|
|
3952
4427
|
description: String
|
|
3953
4428
|
|
|
3954
|
-
"""
|
|
3955
|
-
Field id
|
|
3956
|
-
"""
|
|
4429
|
+
"""Field id"""
|
|
3957
4430
|
id: ID!
|
|
3958
4431
|
|
|
3959
|
-
"""
|
|
3960
|
-
Field name
|
|
3961
|
-
"""
|
|
4432
|
+
"""Field name"""
|
|
3962
4433
|
name: String
|
|
3963
4434
|
}
|
|
3964
4435
|
|
|
3965
4436
|
input ObjectRefApprovalLineOwnerType {
|
|
3966
4437
|
controlNo: String
|
|
3967
4438
|
|
|
3968
|
-
"""
|
|
3969
|
-
Field description
|
|
3970
|
-
"""
|
|
4439
|
+
"""Field description"""
|
|
3971
4440
|
description: String
|
|
3972
4441
|
|
|
3973
|
-
"""
|
|
3974
|
-
Field id
|
|
3975
|
-
"""
|
|
4442
|
+
"""Field id"""
|
|
3976
4443
|
id: ID!
|
|
3977
4444
|
|
|
3978
|
-
"""
|
|
3979
|
-
Field name
|
|
3980
|
-
"""
|
|
4445
|
+
"""Field name"""
|
|
3981
4446
|
name: String
|
|
3982
4447
|
}
|
|
3983
4448
|
|
|
3984
4449
|
input ObjectRefForEmployee {
|
|
3985
4450
|
controlNo: String
|
|
3986
4451
|
|
|
3987
|
-
"""
|
|
3988
|
-
Field description
|
|
3989
|
-
"""
|
|
4452
|
+
"""Field description"""
|
|
3990
4453
|
description: String
|
|
3991
4454
|
email: String
|
|
3992
4455
|
|
|
3993
|
-
"""
|
|
3994
|
-
Field id
|
|
3995
|
-
"""
|
|
4456
|
+
"""Field id"""
|
|
3996
4457
|
id: ID!
|
|
3997
4458
|
|
|
3998
|
-
"""
|
|
3999
|
-
Field name
|
|
4000
|
-
"""
|
|
4459
|
+
"""Field name"""
|
|
4001
4460
|
name: String
|
|
4002
4461
|
photo: String
|
|
4003
4462
|
}
|
|
4004
4463
|
|
|
4005
4464
|
input ObjectRefForUser {
|
|
4006
|
-
"""
|
|
4007
|
-
Field description
|
|
4008
|
-
"""
|
|
4465
|
+
"""Field description"""
|
|
4009
4466
|
description: String
|
|
4010
4467
|
email: String
|
|
4011
4468
|
|
|
4012
|
-
"""
|
|
4013
|
-
Field id
|
|
4014
|
-
"""
|
|
4469
|
+
"""Field id"""
|
|
4015
4470
|
id: ID!
|
|
4016
4471
|
|
|
4017
|
-
"""
|
|
4018
|
-
Field name
|
|
4019
|
-
"""
|
|
4472
|
+
"""Field name"""
|
|
4020
4473
|
name: String
|
|
4021
4474
|
}
|
|
4022
4475
|
|
|
4023
|
-
"""
|
|
4024
|
-
Entity for Operation
|
|
4025
|
-
"""
|
|
4476
|
+
"""Entity for Operation"""
|
|
4026
4477
|
type Operation {
|
|
4027
4478
|
active: Boolean
|
|
4028
4479
|
createdAt: Timestamp
|
|
@@ -4056,6 +4507,29 @@ input OperationPatch {
|
|
|
4056
4507
|
type: String
|
|
4057
4508
|
}
|
|
4058
4509
|
|
|
4510
|
+
type OrgMemberTarget {
|
|
4511
|
+
controlNo: String
|
|
4512
|
+
|
|
4513
|
+
"""Field description"""
|
|
4514
|
+
description: String
|
|
4515
|
+
|
|
4516
|
+
"""Field id"""
|
|
4517
|
+
id: ID!
|
|
4518
|
+
|
|
4519
|
+
"""Field name"""
|
|
4520
|
+
name: String
|
|
4521
|
+
}
|
|
4522
|
+
|
|
4523
|
+
"""type enumeration of a approval line item"""
|
|
4524
|
+
enum OrgMemberTargetType {
|
|
4525
|
+
Department
|
|
4526
|
+
Employee
|
|
4527
|
+
MyDepartment
|
|
4528
|
+
MySupervisor
|
|
4529
|
+
Myself
|
|
4530
|
+
Role
|
|
4531
|
+
}
|
|
4532
|
+
|
|
4059
4533
|
input Pagination {
|
|
4060
4534
|
limit: Int
|
|
4061
4535
|
page: Int
|
|
@@ -4076,9 +4550,7 @@ type PartnerList {
|
|
|
4076
4550
|
total: Int
|
|
4077
4551
|
}
|
|
4078
4552
|
|
|
4079
|
-
"""
|
|
4080
|
-
Entity for PartnerSetting
|
|
4081
|
-
"""
|
|
4553
|
+
"""Entity for PartnerSetting"""
|
|
4082
4554
|
type PartnerSetting {
|
|
4083
4555
|
category: String
|
|
4084
4556
|
createdAt: Timestamp
|
|
@@ -4109,9 +4581,7 @@ input PartnerSettingPatch {
|
|
|
4109
4581
|
value: String
|
|
4110
4582
|
}
|
|
4111
4583
|
|
|
4112
|
-
"""
|
|
4113
|
-
Entity for PayloadLog
|
|
4114
|
-
"""
|
|
4584
|
+
"""Entity for PayloadLog"""
|
|
4115
4585
|
type PayloadLog {
|
|
4116
4586
|
createdAt: Timestamp
|
|
4117
4587
|
creator: User
|
|
@@ -4146,9 +4616,7 @@ type PendingObject {
|
|
|
4146
4616
|
tag: String
|
|
4147
4617
|
}
|
|
4148
4618
|
|
|
4149
|
-
"""
|
|
4150
|
-
Entity for Board PlayGroup
|
|
4151
|
-
"""
|
|
4619
|
+
"""Entity for Board PlayGroup"""
|
|
4152
4620
|
type PlayGroup {
|
|
4153
4621
|
boards: [Board!]
|
|
4154
4622
|
createdAt: Timestamp
|
|
@@ -4345,9 +4813,7 @@ input ProductBundleSettingPatch {
|
|
|
4345
4813
|
productDetail: ObjectRef
|
|
4346
4814
|
}
|
|
4347
4815
|
|
|
4348
|
-
"""
|
|
4349
|
-
Entity for ProductCombination
|
|
4350
|
-
"""
|
|
4816
|
+
"""Entity for ProductCombination"""
|
|
4351
4817
|
type ProductCombination {
|
|
4352
4818
|
createdAt: Timestamp
|
|
4353
4819
|
creator: User
|
|
@@ -4379,9 +4845,7 @@ input ProductCombinationPatch {
|
|
|
4379
4845
|
status: String
|
|
4380
4846
|
}
|
|
4381
4847
|
|
|
4382
|
-
"""
|
|
4383
|
-
Entity for ProductCombinationSetting
|
|
4384
|
-
"""
|
|
4848
|
+
"""Entity for ProductCombinationSetting"""
|
|
4385
4849
|
type ProductCombinationSetting {
|
|
4386
4850
|
combinationId: String
|
|
4387
4851
|
gtin: String
|
|
@@ -4415,9 +4879,7 @@ input ProductCombinationSettingPatch {
|
|
|
4415
4879
|
qty: Int!
|
|
4416
4880
|
}
|
|
4417
4881
|
|
|
4418
|
-
"""
|
|
4419
|
-
status enumeration of a productCombination
|
|
4420
|
-
"""
|
|
4882
|
+
"""status enumeration of a productCombination"""
|
|
4421
4883
|
enum ProductCombinationStatus {
|
|
4422
4884
|
ACTIVATED
|
|
4423
4885
|
ACTIVE
|
|
@@ -4673,9 +5135,7 @@ input ProductSetPatch {
|
|
|
4673
5135
|
type: String
|
|
4674
5136
|
}
|
|
4675
5137
|
|
|
4676
|
-
"""
|
|
4677
|
-
Object type for Profile
|
|
4678
|
-
"""
|
|
5138
|
+
"""Object type for Profile"""
|
|
4679
5139
|
type Profile {
|
|
4680
5140
|
left: Float
|
|
4681
5141
|
picture: String
|
|
@@ -4683,9 +5143,7 @@ type Profile {
|
|
|
4683
5143
|
zoom: Float
|
|
4684
5144
|
}
|
|
4685
5145
|
|
|
4686
|
-
"""
|
|
4687
|
-
Input type for Profile
|
|
4688
|
-
"""
|
|
5146
|
+
"""Input type for Profile"""
|
|
4689
5147
|
input ProfileInput {
|
|
4690
5148
|
file: Upload
|
|
4691
5149
|
left: Float
|
|
@@ -4703,714 +5161,604 @@ type PropertySpec {
|
|
|
4703
5161
|
}
|
|
4704
5162
|
|
|
4705
5163
|
type Query {
|
|
5164
|
+
APIDocCompletion(input: APIDocCompletionInput!): APIDocCompletionOutput!
|
|
5165
|
+
|
|
5166
|
+
"""To fetch multiple Activities"""
|
|
5167
|
+
activities(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ActivityList!
|
|
5168
|
+
|
|
5169
|
+
"""To fetch a Activity"""
|
|
5170
|
+
activity(id: String!): Activity
|
|
5171
|
+
|
|
5172
|
+
"""To fetch a ActivityApproval"""
|
|
5173
|
+
activityApproval(id: String!): ActivityApproval
|
|
5174
|
+
|
|
5175
|
+
"""To fetch multiple ActivityApprovals"""
|
|
5176
|
+
activityApprovals(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ActivityApprovalList!
|
|
5177
|
+
|
|
5178
|
+
"""To fetch a Activity by name"""
|
|
5179
|
+
activityByName(name: String!): Activity
|
|
5180
|
+
|
|
5181
|
+
"""To fetch activity events by period"""
|
|
5182
|
+
activityEvents(from: String!, to: String!): [ActivityEvent!]!
|
|
5183
|
+
|
|
5184
|
+
"""To fetch a ActivityInstance"""
|
|
5185
|
+
activityInstance(id: String!): ActivityInstance
|
|
5186
|
+
|
|
5187
|
+
"""To fetch multiple ActivityInstanceHistory"""
|
|
5188
|
+
activityInstanceHistories(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ActivityInstanceHistoryList!
|
|
5189
|
+
|
|
5190
|
+
"""To fetch a ActivityInstanceHistory"""
|
|
5191
|
+
activityInstanceHistory(id: String!): ActivityInstanceHistory!
|
|
5192
|
+
|
|
5193
|
+
"""To fetch multiple ActivityInstances"""
|
|
5194
|
+
activityInstances(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ActivityInstanceList!
|
|
5195
|
+
|
|
5196
|
+
"""To fetch multiple activity instances by activity"""
|
|
5197
|
+
activityInstancesByActivity(activityId: String!, filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ActivityInstanceList!
|
|
5198
|
+
|
|
5199
|
+
"""To fetch a Activity Summary"""
|
|
5200
|
+
activitySummary: ActivitySummary
|
|
5201
|
+
|
|
5202
|
+
"""To fetch a ActivityTemplate"""
|
|
5203
|
+
activityTemplate(id: String!): ActivityTemplate
|
|
5204
|
+
|
|
5205
|
+
"""To fetch multiple ActivityTemplates"""
|
|
5206
|
+
activityTemplates(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ActivityTemplateList!
|
|
5207
|
+
|
|
5208
|
+
"""To fetch a ActivityThread"""
|
|
5209
|
+
activityThread(id: String!): ActivityThread
|
|
5210
|
+
|
|
5211
|
+
"""To fetch multiple ActivityThreads"""
|
|
5212
|
+
activityThreads(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ActivityThreadList!
|
|
4706
5213
|
appBinding(id: String!): AppBinding!
|
|
4707
|
-
appBindings(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): AppBindingList!
|
|
5214
|
+
appBindings(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): AppBindingList!
|
|
4708
5215
|
|
|
4709
|
-
"""
|
|
4710
|
-
To fetch appliance
|
|
4711
|
-
"""
|
|
5216
|
+
""" To fetch appliance"""
|
|
4712
5217
|
appliance(id: String!): Appliance!
|
|
4713
5218
|
|
|
4714
|
-
"""
|
|
4715
|
-
|
|
4716
|
-
"""
|
|
4717
|
-
appliances(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ApplianceList!
|
|
5219
|
+
"""To fetch multiple appliance"""
|
|
5220
|
+
appliances(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApplianceList!
|
|
4718
5221
|
|
|
4719
|
-
"""
|
|
4720
|
-
To fetch application
|
|
4721
|
-
"""
|
|
5222
|
+
"""To fetch application"""
|
|
4722
5223
|
application(id: String!): Application!
|
|
4723
5224
|
|
|
4724
|
-
"""
|
|
4725
|
-
|
|
4726
|
-
"""
|
|
4727
|
-
applications(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ApplicationList!
|
|
5225
|
+
"""To fetch multiple application"""
|
|
5226
|
+
applications(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApplicationList!
|
|
4728
5227
|
|
|
4729
|
-
"""
|
|
4730
|
-
|
|
4731
|
-
|
|
5228
|
+
"""To fetch the approvals(ActivityApprovals) which has done by me"""
|
|
5229
|
+
approvalDoneList(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ActivityApprovalList!
|
|
5230
|
+
|
|
5231
|
+
"""To fetch a approval line"""
|
|
4732
5232
|
approvalLine(id: String!): ApprovalLine
|
|
4733
5233
|
|
|
4734
|
-
"""
|
|
4735
|
-
|
|
4736
|
-
"""
|
|
4737
|
-
approvalLineReferences(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ApprovalLineList!
|
|
5234
|
+
"""To fetch referable approval lines for the user"""
|
|
5235
|
+
approvalLineReferences(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApprovalLineList!
|
|
4738
5236
|
|
|
4739
|
-
"""
|
|
4740
|
-
|
|
4741
|
-
|
|
4742
|
-
|
|
5237
|
+
"""To fetch multiple approval lines"""
|
|
5238
|
+
approvalLines(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApprovalLineList!
|
|
5239
|
+
|
|
5240
|
+
"""To fetch the list of work results I need to review"""
|
|
5241
|
+
approvalPendingList(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ActivityApprovalList!
|
|
4743
5242
|
attachment(id: String!): Attachment!
|
|
4744
|
-
attachments(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): AttachmentList!
|
|
5243
|
+
attachments(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): AttachmentList!
|
|
5244
|
+
|
|
5245
|
+
"""To fetch a AttributeSet"""
|
|
5246
|
+
attributeSet(id: String!): AttributeSet
|
|
5247
|
+
|
|
5248
|
+
"""To fetch a AttributeSet by Entity name"""
|
|
5249
|
+
attributeSetByEntity(entity: String!): AttributeSet
|
|
5250
|
+
|
|
5251
|
+
"""To fetch multiple AttributeSets"""
|
|
5252
|
+
attributeSets(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): AttributeSetList!
|
|
4745
5253
|
bizOption(name: String!): BizOption!
|
|
4746
5254
|
bizOptionDetail(name: String!): BizOptionDetail!
|
|
4747
|
-
bizOptionDetails(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): BizOptionDetailList!
|
|
4748
|
-
bizOptions(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): BizOptionList!
|
|
5255
|
+
bizOptionDetails(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BizOptionDetailList!
|
|
5256
|
+
bizOptions(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BizOptionList!
|
|
4749
5257
|
bizplace(id: String!): Bizplace!
|
|
4750
|
-
bizplaceUsers(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): UserList!
|
|
4751
|
-
bizplaces(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): BizplaceList!
|
|
5258
|
+
bizplaceUsers(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): UserList!
|
|
5259
|
+
bizplaces(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BizplaceList!
|
|
4752
5260
|
|
|
4753
|
-
"""
|
|
4754
|
-
To fetch a Board
|
|
4755
|
-
"""
|
|
5261
|
+
"""To fetch a Board"""
|
|
4756
5262
|
board(id: String!): Board!
|
|
4757
5263
|
|
|
4758
|
-
"""
|
|
4759
|
-
|
|
4760
|
-
|
|
5264
|
+
"""To fetch a Board Model by name"""
|
|
5265
|
+
boardByName(name: String!): Board
|
|
5266
|
+
|
|
5267
|
+
"""To fetch a BoardSettings"""
|
|
4761
5268
|
boardSettings(names: [String!]): [BoardSetting!]!
|
|
4762
5269
|
|
|
4763
|
-
"""
|
|
4764
|
-
|
|
4765
|
-
"""
|
|
4766
|
-
boards(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): BoardList!
|
|
5270
|
+
"""To fetch a BoardTemplate"""
|
|
5271
|
+
boardTemplate(id: String!): BoardTemplate
|
|
4767
5272
|
|
|
4768
|
-
"""
|
|
4769
|
-
|
|
4770
|
-
|
|
4771
|
-
|
|
5273
|
+
"""To fetch a BoardTemplate by name"""
|
|
5274
|
+
boardTemplateByName(name: String!): BoardTemplate
|
|
5275
|
+
|
|
5276
|
+
"""To fetch multiple BoardTemplates"""
|
|
5277
|
+
boardTemplates(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardTemplateList!
|
|
5278
|
+
|
|
5279
|
+
"""To fetch BoardTemplates created by me"""
|
|
5280
|
+
boardTemplatesCreatedByMe(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardTemplateList!
|
|
5281
|
+
|
|
5282
|
+
"""To fetch multiple Boards"""
|
|
5283
|
+
boards(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardList!
|
|
5284
|
+
|
|
5285
|
+
"""To fetch Boards created by me"""
|
|
5286
|
+
boardsCreatedByMe(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BoardList!
|
|
4772
5287
|
businessBizplace: Bizplace!
|
|
5288
|
+
chatCompletion(input: ChatCompletionInput!): ChatCompletionOutput!
|
|
4773
5289
|
|
|
4774
|
-
"""
|
|
4775
|
-
To check if system would provide default password to create new user
|
|
4776
|
-
"""
|
|
5290
|
+
"""To check if system would provide default password to create new user"""
|
|
4777
5291
|
checkDefaultPassword: Boolean!
|
|
4778
5292
|
checkGtin(customerCompanyDomainId: String!, gtin: String!): ProductDetailList!
|
|
4779
5293
|
|
|
4780
|
-
"""
|
|
4781
|
-
To check if system would provide default password to create new user
|
|
4782
|
-
"""
|
|
5294
|
+
"""To check if system would provide default password to create new user"""
|
|
4783
5295
|
checkResettablePasswordToDefault: Boolean!
|
|
4784
5296
|
|
|
4785
|
-
"""
|
|
4786
|
-
To fetch the preset of role for new user
|
|
4787
|
-
"""
|
|
5297
|
+
"""To fetch the preset of role for new user"""
|
|
4788
5298
|
checkRolePreset: [Role!]!
|
|
4789
5299
|
|
|
4790
|
-
"""
|
|
4791
|
-
To check if current user is belongs to current domain
|
|
4792
|
-
"""
|
|
5300
|
+
"""To check if current user is belongs to current domain"""
|
|
4793
5301
|
checkUserBelongsDomain: Boolean!
|
|
4794
5302
|
|
|
4795
|
-
"""
|
|
4796
|
-
...
|
|
4797
|
-
"""
|
|
5303
|
+
"""..."""
|
|
4798
5304
|
checkUserExistence(email: String!): Boolean!
|
|
4799
5305
|
|
|
4800
|
-
"""
|
|
4801
|
-
|
|
4802
|
-
"""
|
|
4803
|
-
commonApprovalLines(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ApprovalLineList!
|
|
5306
|
+
"""To fetch common approval lines"""
|
|
5307
|
+
commonApprovalLines(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApprovalLineList!
|
|
4804
5308
|
|
|
4805
|
-
"""
|
|
4806
|
-
To fetch a CommonCode
|
|
4807
|
-
"""
|
|
5309
|
+
"""To fetch a CommonCode"""
|
|
4808
5310
|
commonCode(name: String!): CommonCode
|
|
4809
5311
|
|
|
4810
|
-
"""
|
|
4811
|
-
To fetch a CommonCodeDetail
|
|
4812
|
-
"""
|
|
5312
|
+
"""To fetch a CommonCodeDetail"""
|
|
4813
5313
|
commonCodeDetail(id: String!): CommonCodeDetail!
|
|
4814
5314
|
|
|
4815
|
-
"""
|
|
4816
|
-
|
|
4817
|
-
"""
|
|
4818
|
-
commonCodeDetails(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): CommonCodeDetailList!
|
|
5315
|
+
"""To fetch multiple CommonCodeDetails"""
|
|
5316
|
+
commonCodeDetails(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): CommonCodeDetailList!
|
|
4819
5317
|
|
|
4820
|
-
"""
|
|
4821
|
-
|
|
4822
|
-
|
|
4823
|
-
commonCodes(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): CommonCodeList!
|
|
4824
|
-
companies(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): CompanyList!
|
|
5318
|
+
"""To fetch multiple CommonCodes"""
|
|
5319
|
+
commonCodes(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): CommonCodeList!
|
|
5320
|
+
companies(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): CompanyList!
|
|
4825
5321
|
company: Company!
|
|
4826
5322
|
companyBizplaces: BizplaceList!
|
|
4827
5323
|
companyUsers: UserList!
|
|
4828
5324
|
|
|
4829
|
-
"""
|
|
4830
|
-
To fetch a connector
|
|
4831
|
-
"""
|
|
5325
|
+
"""To fetch a connector"""
|
|
4832
5326
|
connection(name: String!): ConnectorType!
|
|
4833
5327
|
|
|
4834
|
-
"""
|
|
4835
|
-
|
|
4836
|
-
"""
|
|
4837
|
-
connections(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ConnectionList!
|
|
5328
|
+
"""To fetch multiple connections"""
|
|
5329
|
+
connections(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ConnectionList!
|
|
4838
5330
|
|
|
4839
|
-
"""
|
|
4840
|
-
To fetch the connector from a connection
|
|
4841
|
-
"""
|
|
5331
|
+
"""To fetch the connector from a connection"""
|
|
4842
5332
|
connectorByConnection(connectionName: String!): ConnectorType!
|
|
4843
5333
|
|
|
4844
|
-
"""
|
|
4845
|
-
To fetch multiple connector
|
|
4846
|
-
"""
|
|
5334
|
+
"""To fetch multiple connector"""
|
|
4847
5335
|
connectors: ConnectorList!
|
|
4848
5336
|
|
|
4849
|
-
"""
|
|
4850
|
-
To fetch a Contact
|
|
4851
|
-
"""
|
|
5337
|
+
"""To fetch a Contact"""
|
|
4852
5338
|
contact(id: String!): Contact
|
|
4853
5339
|
contactPoint(name: String!): ContactPoint!
|
|
4854
|
-
contactPoints(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ContactPointList!
|
|
5340
|
+
contactPoints(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ContactPointList!
|
|
4855
5341
|
|
|
4856
|
-
"""
|
|
4857
|
-
|
|
4858
|
-
"""
|
|
4859
|
-
contacts(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ContactList!
|
|
5342
|
+
"""To fetch multiple Contacts"""
|
|
5343
|
+
contacts(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ContactList!
|
|
4860
5344
|
customerBizplaces: [Bizplace!]!
|
|
4861
5345
|
customers: [Domain!]!
|
|
4862
5346
|
|
|
4863
|
-
"""
|
|
4864
|
-
To fetch a DataArchive
|
|
4865
|
-
"""
|
|
5347
|
+
"""To fetch a DataArchive"""
|
|
4866
5348
|
dataArchive(id: String!): DataArchive!
|
|
4867
5349
|
|
|
4868
|
-
"""
|
|
4869
|
-
|
|
4870
|
-
"""
|
|
4871
|
-
dataArchives(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): DataArchiveList!
|
|
5350
|
+
"""To fetch multiple DataArchives"""
|
|
5351
|
+
dataArchives(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DataArchiveList!
|
|
4872
5352
|
|
|
4873
|
-
"""
|
|
4874
|
-
To fetch a DataKeySet
|
|
4875
|
-
"""
|
|
5353
|
+
"""To fetch a DataKeySet"""
|
|
4876
5354
|
dataKeySet(id: String!): DataKeySet
|
|
4877
5355
|
|
|
4878
|
-
"""
|
|
4879
|
-
|
|
4880
|
-
"""
|
|
4881
|
-
dataKeySets(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): DataKeySetList!
|
|
5356
|
+
"""To fetch multiple DataKeySets"""
|
|
5357
|
+
dataKeySets(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DataKeySetList!
|
|
4882
5358
|
|
|
4883
|
-
"""
|
|
4884
|
-
To fetch a DataOoc
|
|
4885
|
-
"""
|
|
5359
|
+
"""To fetch a DataOoc"""
|
|
4886
5360
|
dataOoc(id: String!): DataOoc!
|
|
4887
5361
|
|
|
4888
|
-
"""
|
|
4889
|
-
|
|
4890
|
-
"""
|
|
4891
|
-
dataOocs(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): DataOocList!
|
|
5362
|
+
"""To fetch multiple DataOoc"""
|
|
5363
|
+
dataOocs(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DataOocList!
|
|
4892
5364
|
|
|
4893
|
-
"""
|
|
4894
|
-
To fetch a data sample
|
|
4895
|
-
"""
|
|
5365
|
+
"""To fetch a data sample"""
|
|
4896
5366
|
dataSample(id: String!): DataSample!
|
|
4897
5367
|
|
|
4898
|
-
"""
|
|
4899
|
-
|
|
4900
|
-
"""
|
|
4901
|
-
dataSamples(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): DataSampleList!
|
|
5368
|
+
"""To fetch multiple data samples"""
|
|
5369
|
+
dataSamples(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DataSampleList!
|
|
4902
5370
|
|
|
4903
|
-
"""
|
|
4904
|
-
|
|
4905
|
-
"""
|
|
4906
|
-
dataSamplesByDataKeySet(
|
|
4907
|
-
dataKeySetId: String!
|
|
4908
|
-
filters: [Filter!]
|
|
4909
|
-
pagination: Pagination
|
|
4910
|
-
sortings: [Sorting!]
|
|
4911
|
-
): DataSampleList!
|
|
5371
|
+
"""To fetch multiple data samples by data key set"""
|
|
5372
|
+
dataSamplesByDataKeySet(dataKeySetId: String!, filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DataSampleList!
|
|
4912
5373
|
|
|
4913
|
-
"""
|
|
4914
|
-
|
|
4915
|
-
|
|
5374
|
+
"""To fetch multiple data samples by data set"""
|
|
5375
|
+
dataSamplesByDataSet(dataSetId: String!, filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DataSampleList!
|
|
5376
|
+
|
|
5377
|
+
"""To fetch multiple DataSamples by period"""
|
|
5378
|
+
dataSamplesByPeriod(dataSetName: String!, filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, period: String!, sortings: [Sorting!]): DataSampleList!
|
|
5379
|
+
|
|
5380
|
+
"""To fetch a DataSensor"""
|
|
4916
5381
|
dataSensor(id: String!): DataSensor!
|
|
4917
5382
|
|
|
4918
|
-
"""
|
|
4919
|
-
|
|
4920
|
-
"""
|
|
4921
|
-
dataSensors(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): DataSensorList!
|
|
5383
|
+
"""To fetch multiple DataSensors"""
|
|
5384
|
+
dataSensors(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DataSensorList!
|
|
4922
5385
|
|
|
4923
|
-
"""
|
|
4924
|
-
To fetch a DataSet
|
|
4925
|
-
"""
|
|
5386
|
+
"""To fetch a DataSet"""
|
|
4926
5387
|
dataSet(id: String!): DataSet!
|
|
4927
5388
|
|
|
4928
|
-
"""
|
|
4929
|
-
|
|
4930
|
-
"""
|
|
4931
|
-
dataSetHistories(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): DataSetHistoryList!
|
|
5389
|
+
"""To fetch a DataSet by name"""
|
|
5390
|
+
dataSetByName(name: String!): DataSet!
|
|
4932
5391
|
|
|
4933
|
-
"""
|
|
4934
|
-
|
|
4935
|
-
|
|
5392
|
+
"""To fetch multiple DataSetHistories"""
|
|
5393
|
+
dataSetHistories(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DataSetHistoryList!
|
|
5394
|
+
|
|
5395
|
+
"""To fetch a DataSetHistory"""
|
|
4936
5396
|
dataSetHistory(id: String!, timestamp: Date!): DataSetHistory!
|
|
4937
5397
|
|
|
4938
|
-
"""
|
|
4939
|
-
|
|
4940
|
-
"""
|
|
4941
|
-
dataSets(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): DataSetList!
|
|
5398
|
+
"""To fetch multiple DataSets"""
|
|
5399
|
+
dataSets(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DataSetList!
|
|
4942
5400
|
|
|
4943
|
-
"""
|
|
4944
|
-
|
|
4945
|
-
"""
|
|
4946
|
-
dataSetsForEntry(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): DataSetList!
|
|
5401
|
+
"""To fetch multiple DataSets for data entry manually"""
|
|
5402
|
+
dataSetsForEntry(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DataSetList!
|
|
4947
5403
|
|
|
4948
|
-
"""
|
|
4949
|
-
|
|
4950
|
-
"""
|
|
4951
|
-
dataSetsForReport(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): DataSetList!
|
|
5404
|
+
"""To fetch multiple DataSets to see data report"""
|
|
5405
|
+
dataSetsForReport(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DataSetList!
|
|
4952
5406
|
|
|
4953
|
-
"""
|
|
4954
|
-
To fetch a data-spec
|
|
4955
|
-
"""
|
|
5407
|
+
"""To fetch a data-spec"""
|
|
4956
5408
|
dataSpec(name: String!): DataSpec!
|
|
4957
5409
|
|
|
4958
|
-
"""
|
|
4959
|
-
To fetch all data-specs
|
|
4960
|
-
"""
|
|
5410
|
+
"""To fetch all data-specs"""
|
|
4961
5411
|
dataSpecs: DataSpecList!
|
|
4962
5412
|
|
|
4963
|
-
"""
|
|
4964
|
-
|
|
4965
|
-
|
|
5413
|
+
"""To fetch multiple DataSummaries"""
|
|
5414
|
+
dataSummaries(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DataSummaryList!
|
|
5415
|
+
|
|
5416
|
+
"""To fetch multiple data summaries by data key set"""
|
|
5417
|
+
dataSummariesByDataKeySet(dataKeySetId: String!, filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DataSummaryList!
|
|
5418
|
+
|
|
5419
|
+
"""To fetch multiple data summaries by data set"""
|
|
5420
|
+
dataSummariesByDataSet(dataSetId: String!, filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DataSummaryList!
|
|
5421
|
+
|
|
5422
|
+
"""To fetch multiple data summaries by data set name"""
|
|
5423
|
+
dataSummariesByDataSetName(dataSetName: String!, filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DataSummaryList!
|
|
5424
|
+
|
|
5425
|
+
"""To fetch a DataSummary"""
|
|
5426
|
+
dataSummary(id: String!): DataSummary
|
|
5427
|
+
|
|
5428
|
+
"""To fetch multiple dynamically grouped DataSummaries"""
|
|
5429
|
+
dataSummaryByPeriod(dataKeys: [String!], dataSetName: String!, filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, period: String!, sortings: [Sorting!]): [DynamicDataSummary!]!
|
|
5430
|
+
decipherCode(input: CodeDecipherInput!): CodeDecipherOutput!
|
|
5431
|
+
decipherErrorCode(input: CodeDecipherInput!): CodeDecipherOutput!
|
|
5432
|
+
|
|
5433
|
+
"""To fetch a Department"""
|
|
4966
5434
|
department(id: String!): Department
|
|
4967
5435
|
|
|
4968
|
-
"""
|
|
4969
|
-
To fetch a Root Department
|
|
4970
|
-
"""
|
|
5436
|
+
"""To fetch a Root Department"""
|
|
4971
5437
|
departmentRoot: Department
|
|
4972
5438
|
|
|
4973
|
-
"""
|
|
4974
|
-
|
|
4975
|
-
"""
|
|
4976
|
-
departments(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): DepartmentList!
|
|
5439
|
+
"""To fetch multiple Departments"""
|
|
5440
|
+
departments(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DepartmentList!
|
|
4977
5441
|
|
|
4978
|
-
"""
|
|
4979
|
-
To fetch domain
|
|
4980
|
-
"""
|
|
5442
|
+
"""To fetch domain"""
|
|
4981
5443
|
domain(id: String!): Domain!
|
|
4982
5444
|
|
|
4983
|
-
"""
|
|
4984
|
-
|
|
4985
|
-
"""
|
|
4986
|
-
domains(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): DomainList!
|
|
5445
|
+
"""To fetch all domains (Only superuser is granted this privilege.)"""
|
|
5446
|
+
domains(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DomainList!
|
|
4987
5447
|
|
|
4988
|
-
"""
|
|
4989
|
-
|
|
4990
|
-
|
|
5448
|
+
"""To fetch the tasks(ActivityThreads) which has done by me"""
|
|
5449
|
+
doneList(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ActivityThreadList!
|
|
5450
|
+
|
|
5451
|
+
"""To fetch my own ActivityInstances"""
|
|
5452
|
+
draftList(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ActivityInstanceList!
|
|
5453
|
+
|
|
5454
|
+
"""To fetch a Employee"""
|
|
4991
5455
|
employee(id: String!): Employee
|
|
4992
5456
|
|
|
4993
|
-
"""
|
|
4994
|
-
|
|
4995
|
-
"""
|
|
4996
|
-
employees(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): EmployeeList!
|
|
5457
|
+
"""To fetch multiple Employees"""
|
|
5458
|
+
employees(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): EmployeeList!
|
|
4997
5459
|
|
|
4998
|
-
"""
|
|
4999
|
-
|
|
5000
|
-
"""
|
|
5001
|
-
entities(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): EntityList!
|
|
5460
|
+
"""To fetch multiple Entities"""
|
|
5461
|
+
entities(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): EntityList!
|
|
5002
5462
|
|
|
5003
|
-
"""
|
|
5004
|
-
To fetch a Entity
|
|
5005
|
-
"""
|
|
5463
|
+
"""To fetch a Entity"""
|
|
5006
5464
|
entity(id: String!): Entity!
|
|
5007
5465
|
|
|
5008
|
-
"""
|
|
5009
|
-
To fetch a EntityColumn
|
|
5010
|
-
"""
|
|
5466
|
+
"""To fetch a EntityColumn"""
|
|
5011
5467
|
entityColumn(id: String!): EntityColumn!
|
|
5012
5468
|
|
|
5013
|
-
"""
|
|
5014
|
-
|
|
5015
|
-
"""
|
|
5016
|
-
entityColumns(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): EntityColumnList!
|
|
5469
|
+
"""To fetch multiple EntityColumns"""
|
|
5470
|
+
entityColumns(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): EntityColumnList!
|
|
5017
5471
|
|
|
5018
|
-
"""
|
|
5019
|
-
To fetch a EntityMetadata
|
|
5020
|
-
"""
|
|
5472
|
+
"""To fetch a EntityMetadata"""
|
|
5021
5473
|
entityMetadata(name: String!): EntityMetadata!
|
|
5022
5474
|
|
|
5023
|
-
"""
|
|
5024
|
-
To fetch the state of a connection
|
|
5025
|
-
"""
|
|
5475
|
+
"""To fetch the state of a connection"""
|
|
5026
5476
|
fetchConnectionState(name: String!): ConnectionState!
|
|
5027
5477
|
|
|
5028
|
-
"""
|
|
5029
|
-
To fetch a Font
|
|
5030
|
-
"""
|
|
5478
|
+
"""To fetch a Font"""
|
|
5031
5479
|
font(id: String!): Font!
|
|
5032
5480
|
|
|
5033
|
-
"""
|
|
5034
|
-
|
|
5035
|
-
"""
|
|
5036
|
-
fonts(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): FontList!
|
|
5481
|
+
"""To fetch multiple Fonts"""
|
|
5482
|
+
fonts(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): FontList!
|
|
5037
5483
|
|
|
5038
|
-
"""
|
|
5039
|
-
To fetch a work date and work shift for given datetime
|
|
5040
|
-
"""
|
|
5484
|
+
"""To fetch a work date and work shift for given datetime"""
|
|
5041
5485
|
getWorkDateAndShift(dateTime: Timestamp!): WorkShiftInfo!
|
|
5042
5486
|
grantedRoles: [GrantedRole!]!
|
|
5043
5487
|
grantingRoles(customerId: String!): [GrantedRole!]!
|
|
5044
5488
|
|
|
5045
|
-
"""
|
|
5046
|
-
To fetch a Group
|
|
5047
|
-
"""
|
|
5489
|
+
"""To fetch a Group"""
|
|
5048
5490
|
group(id: String!): Group
|
|
5049
5491
|
|
|
5050
|
-
"""
|
|
5051
|
-
|
|
5052
|
-
|
|
5053
|
-
|
|
5492
|
+
"""To fetch multiple Groups"""
|
|
5493
|
+
groups(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): GroupList!
|
|
5494
|
+
|
|
5495
|
+
"""To query whether I have the given permission"""
|
|
5496
|
+
hasPrivilege(category: String!, name: String!): Boolean!
|
|
5497
|
+
i18nCompletion(input: i18nCompletionInput!): i18nCompletionOutput!
|
|
5498
|
+
imageCompletion(input: ImageCompletionInput!): ImageCompletionOutput!
|
|
5499
|
+
|
|
5500
|
+
"""To fetch multiple InstallableActivitys"""
|
|
5501
|
+
installableActivities(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): InstallableActivityList!
|
|
5502
|
+
|
|
5503
|
+
"""To fetch a InstallableActivity"""
|
|
5504
|
+
installableActivity(name: String!): InstallableActivity
|
|
5054
5505
|
invitation(email: String!, reference: String!, type: String!): Invitation!
|
|
5055
5506
|
invitations(reference: String!, type: String!): InvitationList!
|
|
5056
5507
|
|
|
5057
|
-
"""
|
|
5058
|
-
To fetch a LiteMenu
|
|
5059
|
-
"""
|
|
5508
|
+
"""To fetch a LiteMenu"""
|
|
5060
5509
|
liteMenu(id: String!): LiteMenu!
|
|
5061
5510
|
|
|
5062
|
-
"""
|
|
5063
|
-
|
|
5064
|
-
"""
|
|
5065
|
-
liteMenus(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): LiteMenuList!
|
|
5511
|
+
"""To fetch multiple LiteMenus"""
|
|
5512
|
+
liteMenus(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): LiteMenuList!
|
|
5066
5513
|
|
|
5067
|
-
"""
|
|
5068
|
-
To fetch a Menu
|
|
5069
|
-
"""
|
|
5514
|
+
"""To fetch a Menu"""
|
|
5070
5515
|
menu(id: String!): Menu!
|
|
5071
5516
|
|
|
5072
|
-
"""
|
|
5073
|
-
To fetch a MenuButton
|
|
5074
|
-
"""
|
|
5517
|
+
"""To fetch a MenuButton"""
|
|
5075
5518
|
menuButton(id: String!): MenuButton!
|
|
5076
5519
|
|
|
5077
|
-
"""
|
|
5078
|
-
|
|
5079
|
-
"""
|
|
5080
|
-
menuButtons(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): MenuButtonList!
|
|
5520
|
+
"""To fetch multiple MenuButtons"""
|
|
5521
|
+
menuButtons(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuButtonList!
|
|
5081
5522
|
|
|
5082
|
-
"""
|
|
5083
|
-
To fetch a Menu by routing
|
|
5084
|
-
"""
|
|
5523
|
+
"""To fetch a Menu by routing"""
|
|
5085
5524
|
menuByRouting(routing: String!): Menu!
|
|
5086
5525
|
|
|
5087
|
-
"""
|
|
5088
|
-
To fetch a MenuColumn
|
|
5089
|
-
"""
|
|
5526
|
+
"""To fetch a MenuColumn"""
|
|
5090
5527
|
menuColumn(id: String!): MenuColumn!
|
|
5091
5528
|
|
|
5092
|
-
"""
|
|
5093
|
-
|
|
5094
|
-
"""
|
|
5095
|
-
menuColumns(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): MenuColumnList!
|
|
5529
|
+
"""To fetch multiple MenuColumns"""
|
|
5530
|
+
menuColumns(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuColumnList!
|
|
5096
5531
|
|
|
5097
|
-
"""
|
|
5098
|
-
To fetch a MenuDetail
|
|
5099
|
-
"""
|
|
5532
|
+
"""To fetch a MenuDetail"""
|
|
5100
5533
|
menuDetail(id: String!): MenuDetail!
|
|
5101
5534
|
|
|
5102
|
-
"""
|
|
5103
|
-
To fetch a MenuDetailButton
|
|
5104
|
-
"""
|
|
5535
|
+
"""To fetch a MenuDetailButton"""
|
|
5105
5536
|
menuDetailButton(id: String!): MenuDetailButton!
|
|
5106
5537
|
|
|
5107
|
-
"""
|
|
5108
|
-
|
|
5109
|
-
"""
|
|
5110
|
-
menuDetailButtons(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): MenuDetailButtonList!
|
|
5538
|
+
"""To fetch multiple MenuDetailButtons"""
|
|
5539
|
+
menuDetailButtons(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuDetailButtonList!
|
|
5111
5540
|
|
|
5112
|
-
"""
|
|
5113
|
-
To fetch a MenuDetailColumn
|
|
5114
|
-
"""
|
|
5541
|
+
"""To fetch a MenuDetailColumn"""
|
|
5115
5542
|
menuDetailColumn(id: String!): MenuDetailColumn!
|
|
5116
5543
|
|
|
5117
|
-
"""
|
|
5118
|
-
|
|
5119
|
-
"""
|
|
5120
|
-
menuDetailColumns(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): MenuDetailColumnList!
|
|
5544
|
+
"""To fetch multiple MenuDetailColumns"""
|
|
5545
|
+
menuDetailColumns(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuDetailColumnList!
|
|
5121
5546
|
|
|
5122
|
-
"""
|
|
5123
|
-
|
|
5124
|
-
"""
|
|
5125
|
-
menuDetails(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): MenuDetailList!
|
|
5547
|
+
"""To fetch multiple MenuDetails"""
|
|
5548
|
+
menuDetails(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuDetailList!
|
|
5126
5549
|
|
|
5127
|
-
"""
|
|
5128
|
-
|
|
5129
|
-
"""
|
|
5130
|
-
menus(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): MenuList!
|
|
5550
|
+
"""To fetch multiple Menus"""
|
|
5551
|
+
menus(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): MenuList!
|
|
5131
5552
|
|
|
5132
|
-
"""
|
|
5133
|
-
|
|
5134
|
-
|
|
5135
|
-
|
|
5136
|
-
|
|
5137
|
-
myBizplaceProductSets(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ProductSetList!
|
|
5138
|
-
myBizplaceProducts(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ProductList!
|
|
5553
|
+
"""To fetch approval lines only for to the user"""
|
|
5554
|
+
myApprovalLines(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ApprovalLineList!
|
|
5555
|
+
myBizplaceProductBundles(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ProductBundleList!
|
|
5556
|
+
myBizplaceProductSets(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ProductSetList!
|
|
5557
|
+
myBizplaceProducts(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ProductList!
|
|
5139
5558
|
myLoginHistories(limit: Float!): [LoginHistory!]!
|
|
5140
5559
|
|
|
5141
|
-
"""
|
|
5142
|
-
|
|
5143
|
-
|
|
5560
|
+
"""To fetch my notifications"""
|
|
5561
|
+
myNotifications(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): NotificationList!
|
|
5562
|
+
|
|
5563
|
+
"""To fetch roles of current user"""
|
|
5144
5564
|
myRoles: [Role!]!
|
|
5145
5565
|
|
|
5146
|
-
"""
|
|
5147
|
-
|
|
5148
|
-
|
|
5566
|
+
"""To fetch a Notification"""
|
|
5567
|
+
notification(id: String!): Notification
|
|
5568
|
+
|
|
5569
|
+
"""To fetch a NotificationRule"""
|
|
5570
|
+
notificationRule(id: String!): NotificationRule
|
|
5571
|
+
|
|
5572
|
+
"""To fetch multiple NotificationRules"""
|
|
5573
|
+
notificationRules(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): NotificationRuleList!
|
|
5574
|
+
|
|
5575
|
+
"""To fetch multiple Notificationes"""
|
|
5576
|
+
notificationes(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): NotificationList!
|
|
5577
|
+
|
|
5578
|
+
"""To fetch a Oauth2Client"""
|
|
5149
5579
|
oauth2Client(id: String!): Oauth2Client
|
|
5150
5580
|
|
|
5151
|
-
"""
|
|
5152
|
-
|
|
5153
|
-
"""
|
|
5154
|
-
oauth2Clients(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): Oauth2ClientList!
|
|
5581
|
+
"""To fetch multiple Oauth2Clients"""
|
|
5582
|
+
oauth2Clients(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): Oauth2ClientList!
|
|
5155
5583
|
|
|
5156
|
-
"""
|
|
5157
|
-
To reference of pending job progress
|
|
5158
|
-
"""
|
|
5584
|
+
"""To reference of pending job progress"""
|
|
5159
5585
|
ocrPendingJob(tag: String!): String!
|
|
5160
5586
|
|
|
5161
|
-
"""
|
|
5162
|
-
To reference of ocr request
|
|
5163
|
-
"""
|
|
5587
|
+
"""To reference of ocr request"""
|
|
5164
5588
|
ocrRequest(images: [Upload!]!): [Any!]!
|
|
5165
5589
|
|
|
5166
|
-
"""
|
|
5167
|
-
To fetch a Operation
|
|
5168
|
-
"""
|
|
5590
|
+
"""To fetch a Operation"""
|
|
5169
5591
|
operation(id: String!): Operation!
|
|
5170
5592
|
|
|
5171
|
-
"""
|
|
5172
|
-
|
|
5173
|
-
"""
|
|
5174
|
-
operations(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): OperationList!
|
|
5593
|
+
"""To fetch multiple Operations"""
|
|
5594
|
+
operations(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): OperationList!
|
|
5175
5595
|
|
|
5176
|
-
"""
|
|
5177
|
-
To fetch specific domain's CommonCodes by given name
|
|
5178
|
-
"""
|
|
5596
|
+
"""To fetch specific domain's CommonCodes by given name"""
|
|
5179
5597
|
partnerCommonCode(name: String!, partnerDomainId: String!): CommonCode!
|
|
5180
5598
|
|
|
5181
|
-
"""
|
|
5182
|
-
To fetch a PartnerSetting
|
|
5183
|
-
"""
|
|
5599
|
+
"""To fetch a PartnerSetting"""
|
|
5184
5600
|
partnerSetting(name: String!, partnerDomainId: String!): PartnerSetting!
|
|
5185
5601
|
|
|
5186
|
-
"""
|
|
5187
|
-
|
|
5188
|
-
|
|
5189
|
-
|
|
5190
|
-
filters: [Filter!]!
|
|
5191
|
-
pagination: Pagination!
|
|
5192
|
-
partnerDomain: ObjectRef!
|
|
5193
|
-
sortings: [Sorting!]!
|
|
5194
|
-
): PartnerSettingList!
|
|
5195
|
-
partners(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): PartnerList!
|
|
5196
|
-
partnersBizplaces(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): BizplaceList!
|
|
5602
|
+
"""To fetch multiple PartnerSettings"""
|
|
5603
|
+
partnerSettings(filters: [Filter!]!, pagination: Pagination!, partnerDomain: ObjectRef!, sortings: [Sorting!]!): PartnerSettingList!
|
|
5604
|
+
partners(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PartnerList!
|
|
5605
|
+
partnersBizplaces(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BizplaceList!
|
|
5197
5606
|
|
|
5198
|
-
"""
|
|
5199
|
-
To fetch a PayloadLog
|
|
5200
|
-
"""
|
|
5607
|
+
"""To fetch a PayloadLog"""
|
|
5201
5608
|
payloadLog(id: String!): PayloadLog!
|
|
5202
5609
|
|
|
5203
|
-
"""
|
|
5204
|
-
|
|
5205
|
-
|
|
5206
|
-
payloadLogs(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): PayloadLogList!
|
|
5207
|
-
permittedPartnersCompanyBizplaces(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): BizplaceList!
|
|
5610
|
+
"""To fetch multiple PayloadLogs"""
|
|
5611
|
+
payloadLogs(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PayloadLogList!
|
|
5612
|
+
permittedPartnersCompanyBizplaces(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): BizplaceList!
|
|
5208
5613
|
|
|
5209
|
-
"""
|
|
5210
|
-
|
|
5211
|
-
|
|
5614
|
+
"""To get list of activity instance that a user can pick"""
|
|
5615
|
+
pickableActivityList(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ActivityInstanceList!
|
|
5616
|
+
|
|
5617
|
+
"""To fetch a PlayGroup"""
|
|
5212
5618
|
playGroup(id: String!): PlayGroup
|
|
5213
5619
|
|
|
5214
|
-
"""
|
|
5215
|
-
|
|
5216
|
-
"""
|
|
5217
|
-
playGroups(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): PlayGroupList!
|
|
5620
|
+
"""To fetch multiple PlayGroups"""
|
|
5621
|
+
playGroups(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PlayGroupList!
|
|
5218
5622
|
|
|
5219
|
-
"""
|
|
5220
|
-
To fetch privilege
|
|
5221
|
-
"""
|
|
5623
|
+
"""To fetch privilege"""
|
|
5222
5624
|
privilege(category: String!, name: String!): Privilege!
|
|
5223
5625
|
|
|
5224
|
-
"""
|
|
5225
|
-
|
|
5226
|
-
"""
|
|
5227
|
-
privileges(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): PrivilegeList!
|
|
5626
|
+
"""To fetch multiple privileges"""
|
|
5627
|
+
privileges(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PrivilegeList!
|
|
5228
5628
|
product(sku: String!): Product!
|
|
5229
5629
|
productBundle(name: String!): ProductBundle!
|
|
5230
|
-
productBundleSets(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ProductBundleSettingList!
|
|
5231
|
-
productBundleSettings(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ProductBundleSettingList!
|
|
5232
|
-
productBundles(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ProductBundleList!
|
|
5630
|
+
productBundleSets(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ProductBundleSettingList!
|
|
5631
|
+
productBundleSettings(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ProductBundleSettingList!
|
|
5632
|
+
productBundles(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ProductBundleList!
|
|
5633
|
+
productById(id: String!): Product!
|
|
5233
5634
|
|
|
5234
|
-
"""
|
|
5235
|
-
To fetch a ProductCombination
|
|
5236
|
-
"""
|
|
5635
|
+
"""To fetch a ProductCombination"""
|
|
5237
5636
|
productCombination(id: String!): ProductCombination!
|
|
5238
5637
|
|
|
5239
|
-
"""
|
|
5240
|
-
|
|
5241
|
-
"""
|
|
5242
|
-
productCombinationSets(
|
|
5243
|
-
filters: [Filter!]
|
|
5244
|
-
pagination: Pagination
|
|
5245
|
-
sortings: [Sorting!]
|
|
5246
|
-
): ProductCombinationSettingList!
|
|
5638
|
+
"""To fetch a set of product combinations"""
|
|
5639
|
+
productCombinationSets(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ProductCombinationSettingList!
|
|
5247
5640
|
|
|
5248
|
-
"""
|
|
5249
|
-
To fetch a ProductCombinationSetting
|
|
5250
|
-
"""
|
|
5641
|
+
"""To fetch a ProductCombinationSetting"""
|
|
5251
5642
|
productCombinationSetting(productCombinationId: String!): ProductCombinationSetting!
|
|
5252
5643
|
|
|
5253
|
-
"""
|
|
5254
|
-
|
|
5255
|
-
"""
|
|
5256
|
-
productCombinationSettings(
|
|
5257
|
-
filters: [Filter!]
|
|
5258
|
-
pagination: Pagination
|
|
5259
|
-
sortings: [Sorting!]
|
|
5260
|
-
): ProductCombinationSettingList!
|
|
5644
|
+
"""To fetch multiple ProductCombinationSettings"""
|
|
5645
|
+
productCombinationSettings(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ProductCombinationSettingList!
|
|
5261
5646
|
|
|
5262
|
-
"""
|
|
5263
|
-
|
|
5264
|
-
"""
|
|
5265
|
-
productCombinations(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ProductCombinationList!
|
|
5647
|
+
"""To fetch multiple ProductCombinations"""
|
|
5648
|
+
productCombinations(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ProductCombinationList!
|
|
5266
5649
|
productDetail(customerCompanyDomainId: String!, gtin: String!, productId: String!): ProductDetail!
|
|
5267
5650
|
productDetailBizplaceSetting(name: String!): ProductDetailBizplaceSetting!
|
|
5268
|
-
productDetailBizplaceSettings(
|
|
5269
|
-
filters: [Filter!]
|
|
5270
|
-
pagination: Pagination
|
|
5271
|
-
sortings: [Sorting!]
|
|
5272
|
-
): ProductDetailBizplaceSettingList!
|
|
5651
|
+
productDetailBizplaceSettings(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ProductDetailBizplaceSettingList!
|
|
5273
5652
|
productDetails(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ProductDetailList!
|
|
5274
5653
|
productSet(name: String!): ProductSet!
|
|
5275
|
-
productSets(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ProductSetList!
|
|
5276
|
-
products(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ProductList!
|
|
5277
|
-
productsByBizplace(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ProductList!
|
|
5278
|
-
pureProductsByBizplace(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ProductList!
|
|
5654
|
+
productSets(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ProductSetList!
|
|
5655
|
+
products(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ProductList!
|
|
5656
|
+
productsByBizplace(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ProductList!
|
|
5657
|
+
pureProductsByBizplace(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ProductList!
|
|
5279
5658
|
|
|
5280
|
-
"""
|
|
5281
|
-
To query data in S3 using Amazon Athena SDK
|
|
5282
|
-
"""
|
|
5659
|
+
"""To query data in S3 using Amazon Athena SDK"""
|
|
5283
5660
|
queryFromAthena(queryData: Object!): Any!
|
|
5284
5661
|
|
|
5285
|
-
"""
|
|
5286
|
-
To fetch role
|
|
5287
|
-
"""
|
|
5662
|
+
"""To fetch role"""
|
|
5288
5663
|
role(name: String!): Role!
|
|
5289
5664
|
|
|
5290
|
-
"""
|
|
5291
|
-
To fetch Menus by role
|
|
5292
|
-
"""
|
|
5665
|
+
"""To fetch Menus by role"""
|
|
5293
5666
|
roleMenus(roleId: String!): MenuList!
|
|
5294
5667
|
|
|
5295
|
-
"""
|
|
5296
|
-
To fetch priviliges of a role
|
|
5297
|
-
"""
|
|
5668
|
+
"""To fetch priviliges of a role"""
|
|
5298
5669
|
rolePrivileges(roleId: String!): [RolePrivilege!]!
|
|
5299
5670
|
|
|
5300
|
-
"""
|
|
5301
|
-
|
|
5302
|
-
"""
|
|
5303
|
-
roles(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): RoleList!
|
|
5671
|
+
"""To fetch multiple users"""
|
|
5672
|
+
roles(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): RoleList!
|
|
5304
5673
|
|
|
5305
|
-
"""
|
|
5306
|
-
To fetch a Routing
|
|
5307
|
-
"""
|
|
5674
|
+
"""To fetch a Routing"""
|
|
5308
5675
|
routing(id: String!): Routing!
|
|
5309
5676
|
|
|
5310
|
-
"""
|
|
5311
|
-
|
|
5312
|
-
"""
|
|
5313
|
-
routingItems(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): RoutingItemList!
|
|
5677
|
+
"""To fetch multiple RoutingItems"""
|
|
5678
|
+
routingItems(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): RoutingItemList!
|
|
5314
5679
|
|
|
5315
|
-
"""
|
|
5316
|
-
|
|
5317
|
-
"""
|
|
5318
|
-
routings(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): RoutingList!
|
|
5680
|
+
"""To fetch multiple Routings"""
|
|
5681
|
+
routings(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): RoutingList!
|
|
5319
5682
|
|
|
5320
|
-
"""
|
|
5321
|
-
To fetch a scenario
|
|
5322
|
-
"""
|
|
5683
|
+
"""To fetch a scenario"""
|
|
5323
5684
|
scenario(id: String!): Scenario!
|
|
5324
5685
|
|
|
5325
|
-
"""
|
|
5326
|
-
To fetch a scenario instance
|
|
5327
|
-
"""
|
|
5686
|
+
"""To fetch a scenario instance"""
|
|
5328
5687
|
scenarioInstance(instanceName: String!): ScenarioInstance!
|
|
5329
5688
|
|
|
5330
|
-
"""
|
|
5331
|
-
|
|
5332
|
-
"""
|
|
5333
|
-
scenarioInstances(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ScenarioInstanceList!
|
|
5689
|
+
"""To fetch multiple scenario instances"""
|
|
5690
|
+
scenarioInstances(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ScenarioInstanceList!
|
|
5334
5691
|
|
|
5335
|
-
"""
|
|
5336
|
-
|
|
5337
|
-
|
|
5338
|
-
scenarios(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): ScenarioList!
|
|
5339
|
-
searchCustomers(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): DomainList!
|
|
5692
|
+
"""To fetch multiple scenarios"""
|
|
5693
|
+
scenarios(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ScenarioList!
|
|
5694
|
+
searchCustomers(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DomainList!
|
|
5340
5695
|
|
|
5341
|
-
"""
|
|
5342
|
-
To fetch a Setting
|
|
5343
|
-
"""
|
|
5696
|
+
"""To fetch a Setting"""
|
|
5344
5697
|
setting(name: String!, partnerDomainId: String): Setting!
|
|
5345
5698
|
|
|
5346
|
-
"""
|
|
5347
|
-
|
|
5348
|
-
"""
|
|
5349
|
-
settings(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): SettingList!
|
|
5699
|
+
"""To fetch multiple Settings"""
|
|
5700
|
+
settings(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): SettingList!
|
|
5350
5701
|
|
|
5351
|
-
"""
|
|
5352
|
-
|
|
5353
|
-
|
|
5702
|
+
"""To fetch the list of activities I can start"""
|
|
5703
|
+
startableActivities(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ActivityList!
|
|
5704
|
+
|
|
5705
|
+
"""To fetch a step"""
|
|
5354
5706
|
step(name: String!): Step!
|
|
5355
5707
|
|
|
5356
|
-
"""
|
|
5357
|
-
|
|
5358
|
-
"""
|
|
5359
|
-
steps(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): StepList!
|
|
5708
|
+
"""To fetch multiple steps"""
|
|
5709
|
+
steps(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): StepList!
|
|
5360
5710
|
|
|
5361
|
-
"""
|
|
5362
|
-
|
|
5363
|
-
|
|
5711
|
+
"""To fetch the list of activities that I can report on"""
|
|
5712
|
+
supervisableActivities(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ActivityList!
|
|
5713
|
+
|
|
5714
|
+
"""To fetch a task-type"""
|
|
5364
5715
|
taskType(name: String!): TaskType!
|
|
5365
5716
|
|
|
5366
|
-
"""
|
|
5367
|
-
To fetch multiple task-type
|
|
5368
|
-
"""
|
|
5717
|
+
"""To fetch multiple task-type"""
|
|
5369
5718
|
taskTypes: TaskTypeList!
|
|
5370
5719
|
|
|
5371
|
-
"""
|
|
5372
|
-
To fetch the connector from a task-type
|
|
5373
|
-
"""
|
|
5720
|
+
"""To fetch the connector from a task-type"""
|
|
5374
5721
|
taskTypesByConnection(connectionName: String!): TaskTypeList!
|
|
5375
5722
|
|
|
5376
|
-
"""
|
|
5377
|
-
|
|
5378
|
-
"""
|
|
5379
|
-
terminologies(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): TerminologyList!
|
|
5723
|
+
"""To fetch multiple Terminologies"""
|
|
5724
|
+
terminologies(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): TerminologyList!
|
|
5380
5725
|
|
|
5381
|
-
"""
|
|
5382
|
-
To fetch a Terminology
|
|
5383
|
-
"""
|
|
5726
|
+
"""To fetch a Terminology"""
|
|
5384
5727
|
terminology(id: String!): Terminology!
|
|
5385
5728
|
|
|
5386
|
-
"""
|
|
5387
|
-
|
|
5388
|
-
|
|
5729
|
+
"""To fetch a Theme"""
|
|
5730
|
+
theme(id: String!): Theme
|
|
5731
|
+
|
|
5732
|
+
"""To fetch multiple Themes"""
|
|
5733
|
+
themes(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ThemeList!
|
|
5734
|
+
|
|
5735
|
+
"""To fetch my own ActivityThreads"""
|
|
5736
|
+
todoList(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): ActivityThreadList!
|
|
5737
|
+
|
|
5738
|
+
"""To fetch user"""
|
|
5389
5739
|
user(email: String!): User!
|
|
5390
5740
|
userBizplaces(email: String!): [Bizplace!]!
|
|
5391
5741
|
|
|
5392
|
-
"""
|
|
5393
|
-
To fetch Menus by role
|
|
5394
|
-
"""
|
|
5742
|
+
"""To fetch Menus by role"""
|
|
5395
5743
|
userMenus: [Menu!]!
|
|
5396
5744
|
|
|
5397
|
-
"""
|
|
5398
|
-
To fetch roles of a user
|
|
5399
|
-
"""
|
|
5745
|
+
"""To fetch roles of a user"""
|
|
5400
5746
|
userRoles(userId: String!): [UserRole!]!
|
|
5401
5747
|
|
|
5402
|
-
"""
|
|
5403
|
-
|
|
5404
|
-
"""
|
|
5405
|
-
users(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): UserList!
|
|
5748
|
+
"""To fetch multiple users"""
|
|
5749
|
+
users(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): UserList!
|
|
5406
5750
|
vendors: [Domain!]!
|
|
5407
5751
|
|
|
5408
|
-
"""
|
|
5409
|
-
|
|
5410
|
-
"""
|
|
5411
|
-
workShifts(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): WorkShiftList!
|
|
5752
|
+
"""To fetch multiple WorkShifts"""
|
|
5753
|
+
workShifts(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): WorkShiftList!
|
|
5412
5754
|
worker(name: String!): Worker!
|
|
5413
|
-
workers(filters: [Filter!], pagination: Pagination, sortings: [Sorting!]): WorkerList!
|
|
5755
|
+
workers(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): WorkerList!
|
|
5756
|
+
}
|
|
5757
|
+
|
|
5758
|
+
type RecipientItem {
|
|
5759
|
+
recipient: OrgMemberTarget
|
|
5760
|
+
type: OrgMemberTargetType
|
|
5761
|
+
value: String
|
|
5414
5762
|
}
|
|
5415
5763
|
|
|
5416
5764
|
type Role {
|
|
@@ -5448,9 +5796,7 @@ type RolePrivilege {
|
|
|
5448
5796
|
name: String
|
|
5449
5797
|
}
|
|
5450
5798
|
|
|
5451
|
-
"""
|
|
5452
|
-
Entity for Routing
|
|
5453
|
-
"""
|
|
5799
|
+
"""Entity for Routing"""
|
|
5454
5800
|
type Routing {
|
|
5455
5801
|
active: Boolean
|
|
5456
5802
|
createdAt: Timestamp
|
|
@@ -5464,9 +5810,7 @@ type Routing {
|
|
|
5464
5810
|
updater: User
|
|
5465
5811
|
}
|
|
5466
5812
|
|
|
5467
|
-
"""
|
|
5468
|
-
Entity for RoutingItem
|
|
5469
|
-
"""
|
|
5813
|
+
"""Entity for RoutingItem"""
|
|
5470
5814
|
type RoutingItem {
|
|
5471
5815
|
active: Boolean
|
|
5472
5816
|
createdAt: Timestamp
|
|
@@ -5515,6 +5859,7 @@ input RoutingPatch {
|
|
|
5515
5859
|
}
|
|
5516
5860
|
|
|
5517
5861
|
type Scenario {
|
|
5862
|
+
"""[will be deprecated] automatically be started when this server start"""
|
|
5518
5863
|
active: Boolean
|
|
5519
5864
|
createdAt: Timestamp
|
|
5520
5865
|
creator: User
|
|
@@ -5523,7 +5868,11 @@ type Scenario {
|
|
|
5523
5868
|
id: ID!
|
|
5524
5869
|
instances: [ScenarioInstance!]
|
|
5525
5870
|
name: String!
|
|
5871
|
+
|
|
5872
|
+
"""accessible and executable system-wide"""
|
|
5873
|
+
public: Boolean
|
|
5526
5874
|
schedule: String
|
|
5875
|
+
scheduleId: String
|
|
5527
5876
|
state: String
|
|
5528
5877
|
steps: [Step!]
|
|
5529
5878
|
timezone: String
|
|
@@ -5538,6 +5887,7 @@ type ScenarioInstance {
|
|
|
5538
5887
|
instanceName: String
|
|
5539
5888
|
message: String
|
|
5540
5889
|
progress: ScenarioInstanceProgress
|
|
5890
|
+
result: Object
|
|
5541
5891
|
root: ScenarioInstance
|
|
5542
5892
|
scenarioName: String
|
|
5543
5893
|
state: String
|
|
@@ -5569,9 +5919,7 @@ type ScenarioInstanceState {
|
|
|
5569
5919
|
variables: Object
|
|
5570
5920
|
}
|
|
5571
5921
|
|
|
5572
|
-
"""
|
|
5573
|
-
state enumeration of a scenario-instance
|
|
5574
|
-
"""
|
|
5922
|
+
"""state enumeration of a scenario-instance"""
|
|
5575
5923
|
enum ScenarioInstanceStatus {
|
|
5576
5924
|
HALTED
|
|
5577
5925
|
READY
|
|
@@ -5602,9 +5950,7 @@ type ScenarioQueueState {
|
|
|
5602
5950
|
queue: [PendingObject!]!
|
|
5603
5951
|
}
|
|
5604
5952
|
|
|
5605
|
-
"""
|
|
5606
|
-
Entity for Setting
|
|
5607
|
-
"""
|
|
5953
|
+
"""Entity for Setting"""
|
|
5608
5954
|
type Setting {
|
|
5609
5955
|
category: String!
|
|
5610
5956
|
createdAt: Timestamp
|
|
@@ -5638,9 +5984,7 @@ input Sorting {
|
|
|
5638
5984
|
"""
|
|
5639
5985
|
desc: Boolean
|
|
5640
5986
|
|
|
5641
|
-
"""
|
|
5642
|
-
Field name to sort by
|
|
5643
|
-
"""
|
|
5987
|
+
"""Field name to sort by"""
|
|
5644
5988
|
name: String!
|
|
5645
5989
|
}
|
|
5646
5990
|
|
|
@@ -5654,6 +5998,11 @@ type Step {
|
|
|
5654
5998
|
log: Boolean
|
|
5655
5999
|
name: String!
|
|
5656
6000
|
params: String
|
|
6001
|
+
|
|
6002
|
+
"""
|
|
6003
|
+
a boolean attribute indicating the inclusion status of an element in the result
|
|
6004
|
+
"""
|
|
6005
|
+
result: Boolean
|
|
5657
6006
|
scenario: Scenario
|
|
5658
6007
|
sequence: Float
|
|
5659
6008
|
skip: Boolean
|
|
@@ -5675,12 +6024,16 @@ input StepPatch {
|
|
|
5675
6024
|
log: Boolean
|
|
5676
6025
|
name: String
|
|
5677
6026
|
params: String
|
|
6027
|
+
result: Boolean
|
|
5678
6028
|
sequence: Int
|
|
5679
6029
|
skip: Boolean
|
|
5680
6030
|
task: String
|
|
5681
6031
|
}
|
|
5682
6032
|
|
|
5683
6033
|
type Subscription {
|
|
6034
|
+
activityApproval: ActivityApproval!
|
|
6035
|
+
activityInstance: ActivityInstance!
|
|
6036
|
+
activityThread: ActivityThread!
|
|
5684
6037
|
board(id: String!): Board!
|
|
5685
6038
|
connectionLog(level: String): Log!
|
|
5686
6039
|
connectionState(name: String): ConnectionState!
|
|
@@ -5706,9 +6059,7 @@ type TaskTypeList {
|
|
|
5706
6059
|
total: Int!
|
|
5707
6060
|
}
|
|
5708
6061
|
|
|
5709
|
-
"""
|
|
5710
|
-
Entity for Terminology
|
|
5711
|
-
"""
|
|
6062
|
+
"""Entity for Terminology"""
|
|
5712
6063
|
type Terminology {
|
|
5713
6064
|
category: String!
|
|
5714
6065
|
createdAt: Timestamp
|
|
@@ -5736,14 +6087,43 @@ input TerminologyPatch {
|
|
|
5736
6087
|
name: String
|
|
5737
6088
|
}
|
|
5738
6089
|
|
|
6090
|
+
"""Entity for Theme"""
|
|
6091
|
+
type Theme {
|
|
6092
|
+
active: Boolean
|
|
6093
|
+
createdAt: Timestamp
|
|
6094
|
+
creator: User
|
|
6095
|
+
deletedAt: Timestamp
|
|
6096
|
+
description: String
|
|
6097
|
+
domain: Domain
|
|
6098
|
+
id: ID!
|
|
6099
|
+
name: String
|
|
6100
|
+
type: String
|
|
6101
|
+
updatedAt: Timestamp
|
|
6102
|
+
updater: User
|
|
6103
|
+
value: Object
|
|
6104
|
+
}
|
|
6105
|
+
|
|
6106
|
+
type ThemeList {
|
|
6107
|
+
items: [Theme!]!
|
|
6108
|
+
total: Int!
|
|
6109
|
+
}
|
|
6110
|
+
|
|
6111
|
+
input ThemePatch {
|
|
6112
|
+
active: Boolean
|
|
6113
|
+
cuFlag: String
|
|
6114
|
+
description: String
|
|
6115
|
+
id: ID
|
|
6116
|
+
name: String
|
|
6117
|
+
type: String
|
|
6118
|
+
value: Object
|
|
6119
|
+
}
|
|
6120
|
+
|
|
5739
6121
|
"""
|
|
5740
6122
|
The javascript `Date` as integer. Type represents date and time as number of milliseconds from start of UNIX epoch.
|
|
5741
6123
|
"""
|
|
5742
6124
|
scalar Timestamp
|
|
5743
6125
|
|
|
5744
|
-
"""
|
|
5745
|
-
The `Upload` scalar type represents a file upload.
|
|
5746
|
-
"""
|
|
6126
|
+
"""The `Upload` scalar type represents a file upload."""
|
|
5747
6127
|
scalar Upload
|
|
5748
6128
|
|
|
5749
6129
|
type UploadURL {
|
|
@@ -5794,14 +6174,7 @@ type UserRole {
|
|
|
5794
6174
|
name: String
|
|
5795
6175
|
}
|
|
5796
6176
|
|
|
5797
|
-
|
|
5798
|
-
workDate: String!
|
|
5799
|
-
workShift: String!
|
|
5800
|
-
}
|
|
5801
|
-
|
|
5802
|
-
"""
|
|
5803
|
-
Entity for WorkShift
|
|
5804
|
-
"""
|
|
6177
|
+
"""Entity for WorkShift"""
|
|
5805
6178
|
type WorkShift {
|
|
5806
6179
|
createdAt: Timestamp
|
|
5807
6180
|
creator: User
|
|
@@ -5817,6 +6190,13 @@ type WorkShift {
|
|
|
5817
6190
|
updater: User
|
|
5818
6191
|
}
|
|
5819
6192
|
|
|
6193
|
+
type WorkShiftInfo {
|
|
6194
|
+
dateRange: [Timestamp!]
|
|
6195
|
+
shiftRange: [Timestamp!]
|
|
6196
|
+
workDate: String
|
|
6197
|
+
workShift: String
|
|
6198
|
+
}
|
|
6199
|
+
|
|
5820
6200
|
type WorkShiftList {
|
|
5821
6201
|
items: [WorkShift!]!
|
|
5822
6202
|
total: Int!
|
|
@@ -5857,3 +6237,11 @@ input WorkerPatch {
|
|
|
5857
6237
|
name: String
|
|
5858
6238
|
type: String
|
|
5859
6239
|
}
|
|
6240
|
+
|
|
6241
|
+
input i18nCompletionInput {
|
|
6242
|
+
json: String!
|
|
6243
|
+
}
|
|
6244
|
+
|
|
6245
|
+
type i18nCompletionOutput {
|
|
6246
|
+
message: String
|
|
6247
|
+
}
|