arkitekt-next 0.7.8__py3-none-any.whl
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.
Potentially problematic release.
This version of arkitekt-next might be problematic. Click here for more details.
- arkitekt_next/__init__.py +43 -0
- arkitekt_next/apps/__init__.py +3 -0
- arkitekt_next/apps/easy.py +99 -0
- arkitekt_next/apps/next.py +40 -0
- arkitekt_next/apps/qt.py +97 -0
- arkitekt_next/apps/service/__init__.py +3 -0
- arkitekt_next/apps/service/fakts.py +88 -0
- arkitekt_next/apps/service/fakts_next.py +79 -0
- arkitekt_next/apps/service/fakts_qt.py +82 -0
- arkitekt_next/apps/service/fluss_next.py +31 -0
- arkitekt_next/apps/service/grant_registry.py +27 -0
- arkitekt_next/apps/service/herre.py +24 -0
- arkitekt_next/apps/service/herre_qt.py +57 -0
- arkitekt_next/apps/service/kabinet.py +31 -0
- arkitekt_next/apps/service/mikro_next.py +81 -0
- arkitekt_next/apps/service/rekuest_next.py +53 -0
- arkitekt_next/apps/service/unlok_next.py +32 -0
- arkitekt_next/apps/types.py +53 -0
- arkitekt_next/builders.py +264 -0
- arkitekt_next/cli/__init__.py +0 -0
- arkitekt_next/cli/commands/call/__init__.py +0 -0
- arkitekt_next/cli/commands/call/local.py +132 -0
- arkitekt_next/cli/commands/call/main.py +22 -0
- arkitekt_next/cli/commands/call/remote.py +90 -0
- arkitekt_next/cli/commands/gen/__init__.py +0 -0
- arkitekt_next/cli/commands/gen/compile.py +45 -0
- arkitekt_next/cli/commands/gen/init.py +122 -0
- arkitekt_next/cli/commands/gen/main.py +29 -0
- arkitekt_next/cli/commands/gen/watch.py +32 -0
- arkitekt_next/cli/commands/init/__init__.py +0 -0
- arkitekt_next/cli/commands/init/main.py +194 -0
- arkitekt_next/cli/commands/inspect/__init__.py +0 -0
- arkitekt_next/cli/commands/inspect/definitions.py +53 -0
- arkitekt_next/cli/commands/inspect/main.py +22 -0
- arkitekt_next/cli/commands/inspect/variables.py +92 -0
- arkitekt_next/cli/commands/manifest/__init__.py +0 -0
- arkitekt_next/cli/commands/manifest/inspect.py +42 -0
- arkitekt_next/cli/commands/manifest/main.py +25 -0
- arkitekt_next/cli/commands/manifest/scopes.py +155 -0
- arkitekt_next/cli/commands/manifest/version.py +147 -0
- arkitekt_next/cli/commands/manifest/wizard.py +94 -0
- arkitekt_next/cli/commands/port/__init__.py +0 -0
- arkitekt_next/cli/commands/port/build.py +231 -0
- arkitekt_next/cli/commands/port/init.py +82 -0
- arkitekt_next/cli/commands/port/main.py +31 -0
- arkitekt_next/cli/commands/port/publish.py +102 -0
- arkitekt_next/cli/commands/port/stage.py +59 -0
- arkitekt_next/cli/commands/port/utils.py +47 -0
- arkitekt_next/cli/commands/port/validate.py +78 -0
- arkitekt_next/cli/commands/port/wizard.py +329 -0
- arkitekt_next/cli/commands/run/__init__.py +0 -0
- arkitekt_next/cli/commands/run/dev.py +349 -0
- arkitekt_next/cli/commands/run/main.py +22 -0
- arkitekt_next/cli/commands/run/prod.py +57 -0
- arkitekt_next/cli/commands/run/utils.py +10 -0
- arkitekt_next/cli/commands/server/__init__.py +0 -0
- arkitekt_next/cli/commands/server/down.py +56 -0
- arkitekt_next/cli/commands/server/init.py +74 -0
- arkitekt_next/cli/commands/server/inspect.py +59 -0
- arkitekt_next/cli/commands/server/main.py +33 -0
- arkitekt_next/cli/commands/server/open.py +66 -0
- arkitekt_next/cli/commands/server/remove.py +60 -0
- arkitekt_next/cli/commands/server/stop.py +56 -0
- arkitekt_next/cli/commands/server/up.py +70 -0
- arkitekt_next/cli/commands/server/utils.py +33 -0
- arkitekt_next/cli/configs/base.yaml +867 -0
- arkitekt_next/cli/constants.py +63 -0
- arkitekt_next/cli/dockerfiles/vanilla.dockerfile +8 -0
- arkitekt_next/cli/errors.py +4 -0
- arkitekt_next/cli/inspect.py +1 -0
- arkitekt_next/cli/io.py +255 -0
- arkitekt_next/cli/main.py +83 -0
- arkitekt_next/cli/options.py +166 -0
- arkitekt_next/cli/schemas/fluss.schema.graphql +2446 -0
- arkitekt_next/cli/schemas/gucker.schema.graphql +8908 -0
- arkitekt_next/cli/schemas/kabinet.schema.graphql +515 -0
- arkitekt_next/cli/schemas/kluster.schema.graphql +109 -0
- arkitekt_next/cli/schemas/konviktion.schema.graphql +70 -0
- arkitekt_next/cli/schemas/kuay.schema.graphql +356 -0
- arkitekt_next/cli/schemas/mikro.schema.graphql +8908 -0
- arkitekt_next/cli/schemas/mikro_next.schema.graphql +1639 -0
- arkitekt_next/cli/schemas/napari.schema.graphql +8908 -0
- arkitekt_next/cli/schemas/omero_ark.schema.graphql +100 -0
- arkitekt_next/cli/schemas/port.schema.graphql +356 -0
- arkitekt_next/cli/schemas/rekuest.schema.graphql +4630 -0
- arkitekt_next/cli/schemas/rekuest_next.schema.graphql +1159 -0
- arkitekt_next/cli/schemas/unlok.schema.graphql +1013 -0
- arkitekt_next/cli/templates/filter.py +26 -0
- arkitekt_next/cli/templates/simple.py +67 -0
- arkitekt_next/cli/texts.py +20 -0
- arkitekt_next/cli/types.py +365 -0
- arkitekt_next/cli/ui.py +111 -0
- arkitekt_next/cli/utils.py +15 -0
- arkitekt_next/cli/validators.py +17 -0
- arkitekt_next/cli/vars.py +39 -0
- arkitekt_next/cli/versions/v1.yaml +1 -0
- arkitekt_next/constants.py +6 -0
- arkitekt_next/model.py +110 -0
- arkitekt_next/qt/__init__.py +9 -0
- arkitekt_next/qt/assets/dark/gear.png +0 -0
- arkitekt_next/qt/assets/dark/green pulse.gif +0 -0
- arkitekt_next/qt/assets/dark/orange pulse.gif +0 -0
- arkitekt_next/qt/assets/dark/pink pulse.gif +0 -0
- arkitekt_next/qt/assets/dark/red pulse.gif +0 -0
- arkitekt_next/qt/assets/light/gear.png +0 -0
- arkitekt_next/qt/assets/light/green pulse.gif +0 -0
- arkitekt_next/qt/assets/light/orange pulse.gif +0 -0
- arkitekt_next/qt/assets/light/pink pulse.gif +0 -0
- arkitekt_next/qt/assets/light/red pulse.gif +0 -0
- arkitekt_next/qt/magic_bar.py +545 -0
- arkitekt_next/qt/utils.py +30 -0
- arkitekt_next/service_registry.py +51 -0
- arkitekt_next/tqdm.py +43 -0
- arkitekt_next/utils.py +38 -0
- arkitekt_next-0.7.8.dist-info/LICENSE +21 -0
- arkitekt_next-0.7.8.dist-info/METADATA +155 -0
- arkitekt_next-0.7.8.dist-info/RECORD +119 -0
- arkitekt_next-0.7.8.dist-info/WHEEL +4 -0
- arkitekt_next-0.7.8.dist-info/entry_points.txt +3 -0
|
@@ -0,0 +1,4630 @@
|
|
|
1
|
+
"""
|
|
2
|
+
The root Query
|
|
3
|
+
"""
|
|
4
|
+
type Query {
|
|
5
|
+
hello: String
|
|
6
|
+
void: String
|
|
7
|
+
|
|
8
|
+
"Comments for a specific object\n \n This query returns all comments for a specific object. The object is\n specified by the `model` and `id` arguments. The `model` argument is\n a string that is the name of the model. The `id` argument is the id of\n the object.\n\n You can only query for comments for objects that you have access to.\n \n "
|
|
9
|
+
commentsfor(deep: Boolean, model: CommentableModels!, id: ID): [Comment]
|
|
10
|
+
mymentions: [Comment]
|
|
11
|
+
comment(id: ID!): Comment
|
|
12
|
+
agent(
|
|
13
|
+
"""
|
|
14
|
+
The query pod
|
|
15
|
+
"""
|
|
16
|
+
id: ID
|
|
17
|
+
|
|
18
|
+
"""
|
|
19
|
+
The query pod
|
|
20
|
+
"""
|
|
21
|
+
client: ID
|
|
22
|
+
|
|
23
|
+
"""
|
|
24
|
+
The query pod
|
|
25
|
+
"""
|
|
26
|
+
sub: ID
|
|
27
|
+
|
|
28
|
+
"""
|
|
29
|
+
The query pod
|
|
30
|
+
"""
|
|
31
|
+
instance: ID = "main"
|
|
32
|
+
): Agent
|
|
33
|
+
agents(
|
|
34
|
+
"""
|
|
35
|
+
Filter by values
|
|
36
|
+
"""
|
|
37
|
+
ids: [ID]
|
|
38
|
+
app: String
|
|
39
|
+
registry: ID
|
|
40
|
+
status: [AgentStatusInput]
|
|
41
|
+
|
|
42
|
+
"""
|
|
43
|
+
Search
|
|
44
|
+
"""
|
|
45
|
+
search: String
|
|
46
|
+
): [Agent]
|
|
47
|
+
myagents(
|
|
48
|
+
"""
|
|
49
|
+
Filter by values
|
|
50
|
+
"""
|
|
51
|
+
ids: [ID]
|
|
52
|
+
app: String
|
|
53
|
+
registry: ID
|
|
54
|
+
status: [AgentStatusInput]
|
|
55
|
+
|
|
56
|
+
"""
|
|
57
|
+
Search
|
|
58
|
+
"""
|
|
59
|
+
search: String
|
|
60
|
+
): [Agent]
|
|
61
|
+
assignation(
|
|
62
|
+
"""
|
|
63
|
+
The query assignation
|
|
64
|
+
"""
|
|
65
|
+
id: ID!
|
|
66
|
+
): Assignation
|
|
67
|
+
myrequests(
|
|
68
|
+
"""
|
|
69
|
+
The excluded values
|
|
70
|
+
"""
|
|
71
|
+
exclude: [AssignationStatusInput]
|
|
72
|
+
|
|
73
|
+
"""
|
|
74
|
+
The included values
|
|
75
|
+
"""
|
|
76
|
+
filter: [AssignationStatusInput]
|
|
77
|
+
|
|
78
|
+
"""
|
|
79
|
+
The excluded values
|
|
80
|
+
"""
|
|
81
|
+
limit: Int
|
|
82
|
+
|
|
83
|
+
"""
|
|
84
|
+
The excluded values
|
|
85
|
+
"""
|
|
86
|
+
latest: Boolean
|
|
87
|
+
|
|
88
|
+
"""
|
|
89
|
+
The excluded values
|
|
90
|
+
"""
|
|
91
|
+
onlyMine: Boolean
|
|
92
|
+
): [Assignation]
|
|
93
|
+
assignations(
|
|
94
|
+
"""
|
|
95
|
+
Filter by values
|
|
96
|
+
"""
|
|
97
|
+
ids: [ID]
|
|
98
|
+
status: [AssignationStatusInput]
|
|
99
|
+
reference: String
|
|
100
|
+
reservation: ID
|
|
101
|
+
reservationReference: String
|
|
102
|
+
parent: ID
|
|
103
|
+
|
|
104
|
+
"""
|
|
105
|
+
Ordering
|
|
106
|
+
"""
|
|
107
|
+
o: String
|
|
108
|
+
|
|
109
|
+
"""
|
|
110
|
+
Query limit
|
|
111
|
+
"""
|
|
112
|
+
limit: Int
|
|
113
|
+
|
|
114
|
+
"""
|
|
115
|
+
Query offset
|
|
116
|
+
"""
|
|
117
|
+
offset: Int
|
|
118
|
+
): [Assignation]
|
|
119
|
+
requests(
|
|
120
|
+
instanceId: String!
|
|
121
|
+
|
|
122
|
+
"""
|
|
123
|
+
The excluded values
|
|
124
|
+
"""
|
|
125
|
+
exclude: [AssignationStatusInput]
|
|
126
|
+
|
|
127
|
+
"""
|
|
128
|
+
The included values
|
|
129
|
+
"""
|
|
130
|
+
filter: [AssignationStatusInput]
|
|
131
|
+
): [Assignation]
|
|
132
|
+
mytodos(
|
|
133
|
+
"""
|
|
134
|
+
The excluded values
|
|
135
|
+
"""
|
|
136
|
+
exclude: [AssignationStatusInput]
|
|
137
|
+
|
|
138
|
+
"""
|
|
139
|
+
The included values
|
|
140
|
+
"""
|
|
141
|
+
filter: [AssignationStatusInput]
|
|
142
|
+
|
|
143
|
+
"""
|
|
144
|
+
The excluded values
|
|
145
|
+
"""
|
|
146
|
+
limit: Int
|
|
147
|
+
): [Assignation]
|
|
148
|
+
todos(
|
|
149
|
+
"""
|
|
150
|
+
The excluded values
|
|
151
|
+
"""
|
|
152
|
+
exclude: [AssignationStatusInput]
|
|
153
|
+
|
|
154
|
+
"""
|
|
155
|
+
The included values
|
|
156
|
+
"""
|
|
157
|
+
filter: [AssignationStatusInput]
|
|
158
|
+
identifier: String = "default"
|
|
159
|
+
): [Assignation]
|
|
160
|
+
|
|
161
|
+
"Asss\n\n Is A query for all of these specials in the world\n "
|
|
162
|
+
node(
|
|
163
|
+
"""
|
|
164
|
+
The identifier string
|
|
165
|
+
"""
|
|
166
|
+
q: QString
|
|
167
|
+
|
|
168
|
+
"""
|
|
169
|
+
The query node
|
|
170
|
+
"""
|
|
171
|
+
id: ID
|
|
172
|
+
|
|
173
|
+
"""
|
|
174
|
+
The query node
|
|
175
|
+
"""
|
|
176
|
+
hash: String
|
|
177
|
+
|
|
178
|
+
"""
|
|
179
|
+
The reservation that is linked to this node
|
|
180
|
+
"""
|
|
181
|
+
reservation: ID
|
|
182
|
+
|
|
183
|
+
"""
|
|
184
|
+
The reservation that is linked to this node
|
|
185
|
+
"""
|
|
186
|
+
assignation: ID
|
|
187
|
+
|
|
188
|
+
"""
|
|
189
|
+
Get node for a template (overrides the others)
|
|
190
|
+
"""
|
|
191
|
+
template: ID
|
|
192
|
+
): Node
|
|
193
|
+
demandednodes(
|
|
194
|
+
inputPortDemands: [PortDemandInput]
|
|
195
|
+
outputPortDemands: [PortDemandInput]
|
|
196
|
+
): [Node]
|
|
197
|
+
allnodes(
|
|
198
|
+
"""
|
|
199
|
+
Filter by values
|
|
200
|
+
"""
|
|
201
|
+
ids: [ID]
|
|
202
|
+
repository: ID
|
|
203
|
+
collections: [ID]
|
|
204
|
+
protocols: [ID]
|
|
205
|
+
name: String
|
|
206
|
+
|
|
207
|
+
"""
|
|
208
|
+
Search
|
|
209
|
+
"""
|
|
210
|
+
search: String
|
|
211
|
+
type: NodeKindInput
|
|
212
|
+
scopes: [NodeScope]
|
|
213
|
+
|
|
214
|
+
"""
|
|
215
|
+
Args
|
|
216
|
+
"""
|
|
217
|
+
argTypes: [String]
|
|
218
|
+
|
|
219
|
+
"""
|
|
220
|
+
Protocol Names
|
|
221
|
+
"""
|
|
222
|
+
protocolNames: [String]
|
|
223
|
+
|
|
224
|
+
"""
|
|
225
|
+
Args
|
|
226
|
+
"""
|
|
227
|
+
interfaces: [String]
|
|
228
|
+
|
|
229
|
+
"""
|
|
230
|
+
Restrict
|
|
231
|
+
"""
|
|
232
|
+
restrict: [String]
|
|
233
|
+
|
|
234
|
+
"""
|
|
235
|
+
Currently Templated
|
|
236
|
+
"""
|
|
237
|
+
templated: Boolean
|
|
238
|
+
|
|
239
|
+
"""
|
|
240
|
+
Ordering
|
|
241
|
+
"""
|
|
242
|
+
order: String
|
|
243
|
+
|
|
244
|
+
"""
|
|
245
|
+
Query limit
|
|
246
|
+
"""
|
|
247
|
+
limit: Int
|
|
248
|
+
|
|
249
|
+
"""
|
|
250
|
+
Query offset
|
|
251
|
+
"""
|
|
252
|
+
offset: Int
|
|
253
|
+
): [Node]
|
|
254
|
+
reservation(
|
|
255
|
+
"""
|
|
256
|
+
The query reservation
|
|
257
|
+
"""
|
|
258
|
+
id: ID
|
|
259
|
+
|
|
260
|
+
"""
|
|
261
|
+
The parent provision
|
|
262
|
+
"""
|
|
263
|
+
provision: ID
|
|
264
|
+
|
|
265
|
+
"""
|
|
266
|
+
The reference
|
|
267
|
+
"""
|
|
268
|
+
reference: String
|
|
269
|
+
): Reservation
|
|
270
|
+
allreservations: [Reservation]
|
|
271
|
+
myreservations(
|
|
272
|
+
"""
|
|
273
|
+
The excluded values
|
|
274
|
+
"""
|
|
275
|
+
exclude: [ReservationStatusInput]
|
|
276
|
+
|
|
277
|
+
"""
|
|
278
|
+
The included values
|
|
279
|
+
"""
|
|
280
|
+
filter: [ReservationStatusInput]
|
|
281
|
+
): [Reservation]
|
|
282
|
+
reservations(
|
|
283
|
+
instanceId: String!
|
|
284
|
+
|
|
285
|
+
"""
|
|
286
|
+
The excluded values
|
|
287
|
+
"""
|
|
288
|
+
exclude: [ReservationStatusInput]
|
|
289
|
+
|
|
290
|
+
"""
|
|
291
|
+
The included values
|
|
292
|
+
"""
|
|
293
|
+
filter: [ReservationStatusInput]
|
|
294
|
+
inputPortDemands: [PortDemandInput]
|
|
295
|
+
outputPortDemands: [PortDemandInput]
|
|
296
|
+
nodeInterfaces: [String]
|
|
297
|
+
templateParams: [TemplateParamInput]
|
|
298
|
+
): [Reservation]
|
|
299
|
+
repository(
|
|
300
|
+
"""
|
|
301
|
+
The query node
|
|
302
|
+
"""
|
|
303
|
+
id: ID
|
|
304
|
+
): Repository
|
|
305
|
+
allrepositories: [Repository]
|
|
306
|
+
myrepositories: [Repository]
|
|
307
|
+
collection(
|
|
308
|
+
"""
|
|
309
|
+
The query node
|
|
310
|
+
"""
|
|
311
|
+
id: ID
|
|
312
|
+
): Collection
|
|
313
|
+
collections(
|
|
314
|
+
"""
|
|
315
|
+
Filter by values
|
|
316
|
+
"""
|
|
317
|
+
ids: [ID]
|
|
318
|
+
|
|
319
|
+
"""
|
|
320
|
+
Search
|
|
321
|
+
"""
|
|
322
|
+
search: String
|
|
323
|
+
|
|
324
|
+
"""
|
|
325
|
+
Query limit
|
|
326
|
+
"""
|
|
327
|
+
limit: Int
|
|
328
|
+
|
|
329
|
+
"""
|
|
330
|
+
Query offset
|
|
331
|
+
"""
|
|
332
|
+
offset: Int
|
|
333
|
+
): [Collection]
|
|
334
|
+
template(
|
|
335
|
+
"""
|
|
336
|
+
The query pod
|
|
337
|
+
"""
|
|
338
|
+
id: ID
|
|
339
|
+
): Template
|
|
340
|
+
|
|
341
|
+
"Asss\n\n Is A query for all of these specials in the world\n "
|
|
342
|
+
mytemplatefor(
|
|
343
|
+
"""
|
|
344
|
+
The query node
|
|
345
|
+
"""
|
|
346
|
+
id: ID
|
|
347
|
+
|
|
348
|
+
"""
|
|
349
|
+
The query node
|
|
350
|
+
"""
|
|
351
|
+
hash: String
|
|
352
|
+
|
|
353
|
+
"""
|
|
354
|
+
The instance id
|
|
355
|
+
"""
|
|
356
|
+
instanceId: ID!
|
|
357
|
+
): Template
|
|
358
|
+
templates(
|
|
359
|
+
"""
|
|
360
|
+
Filter by values
|
|
361
|
+
"""
|
|
362
|
+
ids: [ID]
|
|
363
|
+
package: String
|
|
364
|
+
name: String
|
|
365
|
+
interface: String
|
|
366
|
+
scopes: [NodeScope]
|
|
367
|
+
|
|
368
|
+
"""
|
|
369
|
+
Get active pods?
|
|
370
|
+
"""
|
|
371
|
+
providable: Boolean
|
|
372
|
+
nodeName: String
|
|
373
|
+
nodeDescription: String
|
|
374
|
+
node: ID
|
|
375
|
+
|
|
376
|
+
"""
|
|
377
|
+
Search
|
|
378
|
+
"""
|
|
379
|
+
search: String
|
|
380
|
+
|
|
381
|
+
"""
|
|
382
|
+
Query limit
|
|
383
|
+
"""
|
|
384
|
+
limit: Int
|
|
385
|
+
|
|
386
|
+
"""
|
|
387
|
+
Query offset
|
|
388
|
+
"""
|
|
389
|
+
offset: Int
|
|
390
|
+
): [Template]
|
|
391
|
+
reservableTemplates(
|
|
392
|
+
"""
|
|
393
|
+
The template to reserve (This will assert if the template is truly reservable)
|
|
394
|
+
"""
|
|
395
|
+
template: ID
|
|
396
|
+
|
|
397
|
+
"""
|
|
398
|
+
The node provisions
|
|
399
|
+
"""
|
|
400
|
+
node: ID
|
|
401
|
+
|
|
402
|
+
"""
|
|
403
|
+
The hash of the template
|
|
404
|
+
"""
|
|
405
|
+
hash: String
|
|
406
|
+
templateParams: [TemplateParamInput]
|
|
407
|
+
): [Template]
|
|
408
|
+
structure(
|
|
409
|
+
"""
|
|
410
|
+
The query node
|
|
411
|
+
"""
|
|
412
|
+
id: ID
|
|
413
|
+
|
|
414
|
+
"""
|
|
415
|
+
The Identifier of this Model
|
|
416
|
+
"""
|
|
417
|
+
identifier: String
|
|
418
|
+
): Structure
|
|
419
|
+
structures: [Structure]
|
|
420
|
+
provision(
|
|
421
|
+
"""
|
|
422
|
+
The query provisions
|
|
423
|
+
"""
|
|
424
|
+
id: ID!
|
|
425
|
+
): Provision
|
|
426
|
+
allprovisions(
|
|
427
|
+
"""
|
|
428
|
+
Filter by values
|
|
429
|
+
"""
|
|
430
|
+
ids: [ID]
|
|
431
|
+
status: [ProvisionStatusInput]
|
|
432
|
+
agent: ID
|
|
433
|
+
client: ID
|
|
434
|
+
clientId: String
|
|
435
|
+
): [Provision]
|
|
436
|
+
linkableprovisions(
|
|
437
|
+
"""
|
|
438
|
+
The query provisions
|
|
439
|
+
"""
|
|
440
|
+
id: ID!
|
|
441
|
+
): [Provision]
|
|
442
|
+
myprovisions(
|
|
443
|
+
"""
|
|
444
|
+
The excluded values
|
|
445
|
+
"""
|
|
446
|
+
exclude: [ProvisionStatusInput]
|
|
447
|
+
|
|
448
|
+
"""
|
|
449
|
+
The included values
|
|
450
|
+
"""
|
|
451
|
+
filter: [ProvisionStatusInput]
|
|
452
|
+
): [Provision]
|
|
453
|
+
provisions(
|
|
454
|
+
"""
|
|
455
|
+
The excluded values
|
|
456
|
+
"""
|
|
457
|
+
exclude: [ProvisionStatusInput]
|
|
458
|
+
|
|
459
|
+
"""
|
|
460
|
+
The included values
|
|
461
|
+
"""
|
|
462
|
+
filter: [ProvisionStatusInput]
|
|
463
|
+
|
|
464
|
+
"""
|
|
465
|
+
The agent instance_ids
|
|
466
|
+
"""
|
|
467
|
+
instanceId: String = "main"
|
|
468
|
+
): [Provision]
|
|
469
|
+
registry(
|
|
470
|
+
"""
|
|
471
|
+
The query pod
|
|
472
|
+
"""
|
|
473
|
+
id: ID
|
|
474
|
+
): Registry
|
|
475
|
+
registries(
|
|
476
|
+
"""
|
|
477
|
+
Filter by values
|
|
478
|
+
"""
|
|
479
|
+
ids: [ID]
|
|
480
|
+
unique: String
|
|
481
|
+
): [Registry]
|
|
482
|
+
testcase(
|
|
483
|
+
"""
|
|
484
|
+
The query pod
|
|
485
|
+
"""
|
|
486
|
+
id: ID
|
|
487
|
+
): TestCase
|
|
488
|
+
testcases(
|
|
489
|
+
"""
|
|
490
|
+
Filter by values
|
|
491
|
+
"""
|
|
492
|
+
ids: [ID]
|
|
493
|
+
|
|
494
|
+
"""
|
|
495
|
+
Search
|
|
496
|
+
"""
|
|
497
|
+
search: String
|
|
498
|
+
node: ID
|
|
499
|
+
key: String
|
|
500
|
+
|
|
501
|
+
"""
|
|
502
|
+
Query limit
|
|
503
|
+
"""
|
|
504
|
+
limit: Int
|
|
505
|
+
|
|
506
|
+
"""
|
|
507
|
+
Query offset
|
|
508
|
+
"""
|
|
509
|
+
offset: Int
|
|
510
|
+
): [TestCase]
|
|
511
|
+
testresult(
|
|
512
|
+
"""
|
|
513
|
+
The query pod
|
|
514
|
+
"""
|
|
515
|
+
id: ID
|
|
516
|
+
): TestResult
|
|
517
|
+
testresults(
|
|
518
|
+
"""
|
|
519
|
+
Filter by values
|
|
520
|
+
"""
|
|
521
|
+
ids: [ID]
|
|
522
|
+
|
|
523
|
+
"""
|
|
524
|
+
Search
|
|
525
|
+
"""
|
|
526
|
+
search: String
|
|
527
|
+
case: ID
|
|
528
|
+
template: ID
|
|
529
|
+
key: String
|
|
530
|
+
|
|
531
|
+
"""
|
|
532
|
+
Query limit
|
|
533
|
+
"""
|
|
534
|
+
limit: Int
|
|
535
|
+
|
|
536
|
+
"""
|
|
537
|
+
Query offset
|
|
538
|
+
"""
|
|
539
|
+
offset: Int
|
|
540
|
+
): [TestResult]
|
|
541
|
+
permissionsFor(model: SharableModels!, name: String): [Permission]
|
|
542
|
+
permissionsOf(model: SharableModels!, id: ID!): PermissionsOfReturn
|
|
543
|
+
me: User
|
|
544
|
+
user(
|
|
545
|
+
"""
|
|
546
|
+
The user's id
|
|
547
|
+
"""
|
|
548
|
+
id: ID
|
|
549
|
+
|
|
550
|
+
"""
|
|
551
|
+
The user's id
|
|
552
|
+
"""
|
|
553
|
+
email: String
|
|
554
|
+
): User
|
|
555
|
+
|
|
556
|
+
"""
|
|
557
|
+
Get a list of users
|
|
558
|
+
"""
|
|
559
|
+
users(
|
|
560
|
+
"""
|
|
561
|
+
Search for substring of name
|
|
562
|
+
"""
|
|
563
|
+
username: String
|
|
564
|
+
|
|
565
|
+
"""
|
|
566
|
+
Search for substring of name
|
|
567
|
+
"""
|
|
568
|
+
email: String
|
|
569
|
+
|
|
570
|
+
"""
|
|
571
|
+
Search for substring of name
|
|
572
|
+
"""
|
|
573
|
+
search: String
|
|
574
|
+
): [User]
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
"""
|
|
578
|
+
A comment
|
|
579
|
+
|
|
580
|
+
A comment is a user generated comment on a commentable object. A comment can be a reply to another comment or a top level comment.
|
|
581
|
+
Comments can be nested to any depth. A comment can be edited and deleted by the user that created it.
|
|
582
|
+
"""
|
|
583
|
+
type Comment {
|
|
584
|
+
"""
|
|
585
|
+
"""
|
|
586
|
+
id: ID!
|
|
587
|
+
|
|
588
|
+
"""
|
|
589
|
+
The content type of the commentable object
|
|
590
|
+
"""
|
|
591
|
+
contentType: CommentableModels
|
|
592
|
+
|
|
593
|
+
"""
|
|
594
|
+
"""
|
|
595
|
+
objectId: Int!
|
|
596
|
+
|
|
597
|
+
"""
|
|
598
|
+
"""
|
|
599
|
+
user: User!
|
|
600
|
+
|
|
601
|
+
"""
|
|
602
|
+
"""
|
|
603
|
+
text: String!
|
|
604
|
+
|
|
605
|
+
"""
|
|
606
|
+
"""
|
|
607
|
+
createdAt: DateTime!
|
|
608
|
+
|
|
609
|
+
"""
|
|
610
|
+
"""
|
|
611
|
+
parent: Comment
|
|
612
|
+
|
|
613
|
+
"""
|
|
614
|
+
The descendents of the comment (this referes to the Comment Tree)
|
|
615
|
+
"""
|
|
616
|
+
descendents: [Descendent]
|
|
617
|
+
|
|
618
|
+
"""
|
|
619
|
+
"""
|
|
620
|
+
mentions: [User!]!
|
|
621
|
+
|
|
622
|
+
"""
|
|
623
|
+
"""
|
|
624
|
+
resolved: DateTime
|
|
625
|
+
|
|
626
|
+
"""
|
|
627
|
+
"""
|
|
628
|
+
resolvedBy: User
|
|
629
|
+
|
|
630
|
+
"""
|
|
631
|
+
Comments that are replies to this comment
|
|
632
|
+
"""
|
|
633
|
+
children(
|
|
634
|
+
"""
|
|
635
|
+
How many children to return
|
|
636
|
+
"""
|
|
637
|
+
limit: Int
|
|
638
|
+
|
|
639
|
+
"""
|
|
640
|
+
The offset for the children
|
|
641
|
+
"""
|
|
642
|
+
offset: Int
|
|
643
|
+
): [Comment]
|
|
644
|
+
}
|
|
645
|
+
|
|
646
|
+
enum CommentableModels {
|
|
647
|
+
FACADE_REPOSITORY
|
|
648
|
+
FACADE_REGISTRY
|
|
649
|
+
FACADE_PROTOCOL
|
|
650
|
+
FACADE_STRUCTURE
|
|
651
|
+
FACADE_MIRRORREPOSITORY
|
|
652
|
+
FACADE_APPREPOSITORY
|
|
653
|
+
FACADE_AGENT
|
|
654
|
+
FACADE_COLLECTION
|
|
655
|
+
FACADE_WAITER
|
|
656
|
+
FACADE_NODE
|
|
657
|
+
FACADE_TEMPLATE
|
|
658
|
+
FACADE_PROVISIONLOG
|
|
659
|
+
FACADE_PROVISION
|
|
660
|
+
FACADE_RESERVATIONLOG
|
|
661
|
+
FACADE_RESERVATION
|
|
662
|
+
FACADE_ASSIGNATION
|
|
663
|
+
FACADE_ASSIGNATIONLOG
|
|
664
|
+
FACADE_TESTCASE
|
|
665
|
+
FACADE_TESTRESULT
|
|
666
|
+
}
|
|
667
|
+
|
|
668
|
+
"""
|
|
669
|
+
A reflection on the real User
|
|
670
|
+
"""
|
|
671
|
+
type User {
|
|
672
|
+
"""
|
|
673
|
+
"""
|
|
674
|
+
id: ID!
|
|
675
|
+
|
|
676
|
+
"""
|
|
677
|
+
"""
|
|
678
|
+
password: String!
|
|
679
|
+
|
|
680
|
+
"""
|
|
681
|
+
"""
|
|
682
|
+
lastLogin: DateTime
|
|
683
|
+
|
|
684
|
+
"""
|
|
685
|
+
Designates that this user has all permissions without explicitly assigning them.
|
|
686
|
+
"""
|
|
687
|
+
isSuperuser: Boolean!
|
|
688
|
+
|
|
689
|
+
"""
|
|
690
|
+
The groups this user belongs to. A user will get all permissions granted to each of their groups.
|
|
691
|
+
"""
|
|
692
|
+
groups: [Group!]!
|
|
693
|
+
|
|
694
|
+
"""
|
|
695
|
+
Specific permissions for this user.
|
|
696
|
+
"""
|
|
697
|
+
userPermissions: [Permission!]!
|
|
698
|
+
|
|
699
|
+
"""
|
|
700
|
+
Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only.
|
|
701
|
+
"""
|
|
702
|
+
username: String!
|
|
703
|
+
|
|
704
|
+
"""
|
|
705
|
+
"""
|
|
706
|
+
firstName: String!
|
|
707
|
+
|
|
708
|
+
"""
|
|
709
|
+
"""
|
|
710
|
+
lastName: String!
|
|
711
|
+
|
|
712
|
+
"""
|
|
713
|
+
"""
|
|
714
|
+
email: String!
|
|
715
|
+
|
|
716
|
+
"""
|
|
717
|
+
Designates whether the user can log into this admin site.
|
|
718
|
+
"""
|
|
719
|
+
isStaff: Boolean!
|
|
720
|
+
|
|
721
|
+
"""
|
|
722
|
+
Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
|
|
723
|
+
"""
|
|
724
|
+
isActive: Boolean!
|
|
725
|
+
|
|
726
|
+
"""
|
|
727
|
+
"""
|
|
728
|
+
dateJoined: DateTime!
|
|
729
|
+
|
|
730
|
+
"""
|
|
731
|
+
The sub of the user
|
|
732
|
+
"""
|
|
733
|
+
sub: String
|
|
734
|
+
|
|
735
|
+
"""
|
|
736
|
+
"""
|
|
737
|
+
iss: String
|
|
738
|
+
|
|
739
|
+
"""
|
|
740
|
+
"""
|
|
741
|
+
comments: [Comment!]!
|
|
742
|
+
|
|
743
|
+
"""
|
|
744
|
+
"""
|
|
745
|
+
mentionedIn: [Comment!]!
|
|
746
|
+
|
|
747
|
+
"""
|
|
748
|
+
"""
|
|
749
|
+
resolvedComments: [Comment!]!
|
|
750
|
+
|
|
751
|
+
"""
|
|
752
|
+
The Associatsed App
|
|
753
|
+
"""
|
|
754
|
+
registrySet: [Registry!]!
|
|
755
|
+
|
|
756
|
+
"""
|
|
757
|
+
Who created this template on this instance
|
|
758
|
+
"""
|
|
759
|
+
templateSet: [Template!]!
|
|
760
|
+
|
|
761
|
+
"""
|
|
762
|
+
This provision creator
|
|
763
|
+
"""
|
|
764
|
+
provisionSet: [Provision!]!
|
|
765
|
+
|
|
766
|
+
"""
|
|
767
|
+
This Reservations creator
|
|
768
|
+
"""
|
|
769
|
+
reservationSet: [Reservation!]!
|
|
770
|
+
|
|
771
|
+
"""
|
|
772
|
+
The creator is this assignation
|
|
773
|
+
"""
|
|
774
|
+
assignationSet: [Assignation!]!
|
|
775
|
+
|
|
776
|
+
"""
|
|
777
|
+
The associated color for this user
|
|
778
|
+
"""
|
|
779
|
+
color: String
|
|
780
|
+
|
|
781
|
+
"""
|
|
782
|
+
The name of the user
|
|
783
|
+
"""
|
|
784
|
+
name: String
|
|
785
|
+
}
|
|
786
|
+
|
|
787
|
+
"""
|
|
788
|
+
The `DateTime` scalar type represents a DateTime
|
|
789
|
+
value as specified by
|
|
790
|
+
[iso8601](https://en.wikipedia.org/wiki/ISO_8601).
|
|
791
|
+
"""
|
|
792
|
+
scalar DateTime
|
|
793
|
+
|
|
794
|
+
type Group {
|
|
795
|
+
"""
|
|
796
|
+
"""
|
|
797
|
+
id: ID!
|
|
798
|
+
|
|
799
|
+
"""
|
|
800
|
+
"""
|
|
801
|
+
name: String!
|
|
802
|
+
|
|
803
|
+
"""
|
|
804
|
+
"""
|
|
805
|
+
permissions: [Permission!]!
|
|
806
|
+
|
|
807
|
+
"""
|
|
808
|
+
The groups this user belongs to. A user will get all permissions granted to each of their groups.
|
|
809
|
+
"""
|
|
810
|
+
userSet: [User!]!
|
|
811
|
+
}
|
|
812
|
+
|
|
813
|
+
"""
|
|
814
|
+
A Permission object
|
|
815
|
+
|
|
816
|
+
This object represents a permission in the system. Permissions are
|
|
817
|
+
used to control access to different parts of the system. Permissions
|
|
818
|
+
are assigned to groups and users. A user has access to a part of the
|
|
819
|
+
system if the user is a member of a group that has the permission
|
|
820
|
+
assigned to it.
|
|
821
|
+
"""
|
|
822
|
+
type Permission {
|
|
823
|
+
"""
|
|
824
|
+
"""
|
|
825
|
+
id: ID!
|
|
826
|
+
|
|
827
|
+
"""
|
|
828
|
+
"""
|
|
829
|
+
name: String!
|
|
830
|
+
|
|
831
|
+
"""
|
|
832
|
+
"""
|
|
833
|
+
codename: String!
|
|
834
|
+
|
|
835
|
+
"""
|
|
836
|
+
"""
|
|
837
|
+
groupSet: [Group!]!
|
|
838
|
+
|
|
839
|
+
"""
|
|
840
|
+
Specific permissions for this user.
|
|
841
|
+
"""
|
|
842
|
+
userSet: [User!]!
|
|
843
|
+
|
|
844
|
+
"""
|
|
845
|
+
Unique ID for this permission
|
|
846
|
+
"""
|
|
847
|
+
unique: String!
|
|
848
|
+
}
|
|
849
|
+
|
|
850
|
+
type Registry {
|
|
851
|
+
"""
|
|
852
|
+
"""
|
|
853
|
+
id: ID!
|
|
854
|
+
|
|
855
|
+
"""
|
|
856
|
+
"""
|
|
857
|
+
client: LokClient!
|
|
858
|
+
|
|
859
|
+
"""
|
|
860
|
+
The Associated App
|
|
861
|
+
"""
|
|
862
|
+
app: LokApp
|
|
863
|
+
|
|
864
|
+
"""
|
|
865
|
+
The Associatsed App
|
|
866
|
+
"""
|
|
867
|
+
user: User
|
|
868
|
+
|
|
869
|
+
"""
|
|
870
|
+
The provide might be limited to a instance like ImageJ belonging to a specific person. Is nullable for backend users
|
|
871
|
+
"""
|
|
872
|
+
agents: [Agent!]!
|
|
873
|
+
|
|
874
|
+
"""
|
|
875
|
+
The provide might be limited to a instance like ImageJ belonging to a specific person. Is nullable for backend users
|
|
876
|
+
"""
|
|
877
|
+
waiters: [Waiter!]!
|
|
878
|
+
name: String @deprecated(reason: "Will be replaced in the future")
|
|
879
|
+
}
|
|
880
|
+
|
|
881
|
+
type LokClient {
|
|
882
|
+
"""
|
|
883
|
+
"""
|
|
884
|
+
id: ID!
|
|
885
|
+
|
|
886
|
+
"""
|
|
887
|
+
"""
|
|
888
|
+
iss: String!
|
|
889
|
+
|
|
890
|
+
"""
|
|
891
|
+
"""
|
|
892
|
+
clientId: String!
|
|
893
|
+
|
|
894
|
+
"""
|
|
895
|
+
"""
|
|
896
|
+
name: String!
|
|
897
|
+
|
|
898
|
+
"""
|
|
899
|
+
"""
|
|
900
|
+
app: LokApp!
|
|
901
|
+
|
|
902
|
+
"""
|
|
903
|
+
"""
|
|
904
|
+
grantType: LokClientGrantType!
|
|
905
|
+
|
|
906
|
+
"""
|
|
907
|
+
"""
|
|
908
|
+
registrySet: [Registry!]!
|
|
909
|
+
}
|
|
910
|
+
|
|
911
|
+
type LokApp {
|
|
912
|
+
"""
|
|
913
|
+
"""
|
|
914
|
+
id: ID!
|
|
915
|
+
|
|
916
|
+
"""
|
|
917
|
+
"""
|
|
918
|
+
identifier: String!
|
|
919
|
+
|
|
920
|
+
"""
|
|
921
|
+
"""
|
|
922
|
+
version: String!
|
|
923
|
+
|
|
924
|
+
"""
|
|
925
|
+
"""
|
|
926
|
+
lokclientSet: [LokClient!]!
|
|
927
|
+
|
|
928
|
+
"""
|
|
929
|
+
The Associated App
|
|
930
|
+
"""
|
|
931
|
+
registrySet: [Registry!]!
|
|
932
|
+
|
|
933
|
+
"""
|
|
934
|
+
The Associated App
|
|
935
|
+
"""
|
|
936
|
+
apprepositorySet: [AppRepository!]!
|
|
937
|
+
|
|
938
|
+
"""
|
|
939
|
+
This provision creator
|
|
940
|
+
"""
|
|
941
|
+
provisionSet: [Provision!]!
|
|
942
|
+
|
|
943
|
+
"""
|
|
944
|
+
This Reservations app
|
|
945
|
+
"""
|
|
946
|
+
reservationSet: [Reservation!]!
|
|
947
|
+
|
|
948
|
+
"""
|
|
949
|
+
The app is this assignation
|
|
950
|
+
"""
|
|
951
|
+
assignationSet: [Assignation!]!
|
|
952
|
+
}
|
|
953
|
+
|
|
954
|
+
type AppRepository implements Repository {
|
|
955
|
+
"""
|
|
956
|
+
Id of the Repository
|
|
957
|
+
"""
|
|
958
|
+
id: ID!
|
|
959
|
+
|
|
960
|
+
"""
|
|
961
|
+
"""
|
|
962
|
+
installedAt: DateTime!
|
|
963
|
+
|
|
964
|
+
"""
|
|
965
|
+
"""
|
|
966
|
+
type: RepositoryType!
|
|
967
|
+
|
|
968
|
+
"""
|
|
969
|
+
The Name of the Repository
|
|
970
|
+
"""
|
|
971
|
+
name: String
|
|
972
|
+
|
|
973
|
+
"""
|
|
974
|
+
A world-unique identifier
|
|
975
|
+
"""
|
|
976
|
+
unique: String!
|
|
977
|
+
|
|
978
|
+
"""
|
|
979
|
+
The Associated App
|
|
980
|
+
"""
|
|
981
|
+
app: LokApp
|
|
982
|
+
nodes(
|
|
983
|
+
"""
|
|
984
|
+
Filter by values
|
|
985
|
+
"""
|
|
986
|
+
ids: [ID]
|
|
987
|
+
package: String
|
|
988
|
+
): [Node]
|
|
989
|
+
}
|
|
990
|
+
|
|
991
|
+
interface Repository {
|
|
992
|
+
"""
|
|
993
|
+
Id of the Repository
|
|
994
|
+
"""
|
|
995
|
+
id: ID!
|
|
996
|
+
nodes(
|
|
997
|
+
"""
|
|
998
|
+
Filter by values
|
|
999
|
+
"""
|
|
1000
|
+
ids: [ID]
|
|
1001
|
+
package: String
|
|
1002
|
+
): [Node]
|
|
1003
|
+
|
|
1004
|
+
"""
|
|
1005
|
+
The Name of the Repository
|
|
1006
|
+
"""
|
|
1007
|
+
name: String
|
|
1008
|
+
}
|
|
1009
|
+
|
|
1010
|
+
type Node {
|
|
1011
|
+
"""
|
|
1012
|
+
"""
|
|
1013
|
+
id: ID!
|
|
1014
|
+
|
|
1015
|
+
"""
|
|
1016
|
+
The collections this Node belongs to
|
|
1017
|
+
"""
|
|
1018
|
+
collections: [Collection!]!
|
|
1019
|
+
|
|
1020
|
+
"""
|
|
1021
|
+
Is this function pure. e.g can we cache the result?
|
|
1022
|
+
"""
|
|
1023
|
+
pure: Boolean!
|
|
1024
|
+
|
|
1025
|
+
"""
|
|
1026
|
+
Is this function pure. e.g can we cache the result?
|
|
1027
|
+
"""
|
|
1028
|
+
idempotent: Boolean!
|
|
1029
|
+
|
|
1030
|
+
"""
|
|
1031
|
+
Function, generator? Check async Programming Textbook
|
|
1032
|
+
"""
|
|
1033
|
+
kind: NodeKind!
|
|
1034
|
+
interfaces: [String]
|
|
1035
|
+
|
|
1036
|
+
"""
|
|
1037
|
+
The port groups
|
|
1038
|
+
"""
|
|
1039
|
+
portGroups: [PortGroup]
|
|
1040
|
+
|
|
1041
|
+
"""
|
|
1042
|
+
The cleartext name of this Node
|
|
1043
|
+
"""
|
|
1044
|
+
name: String!
|
|
1045
|
+
meta: GenericScalar
|
|
1046
|
+
|
|
1047
|
+
"""
|
|
1048
|
+
The tests of its node
|
|
1049
|
+
"""
|
|
1050
|
+
protocols(
|
|
1051
|
+
"""
|
|
1052
|
+
Filter by values
|
|
1053
|
+
"""
|
|
1054
|
+
ids: [ID]
|
|
1055
|
+
name: String
|
|
1056
|
+
): [Protocol]
|
|
1057
|
+
|
|
1058
|
+
"""
|
|
1059
|
+
A description for the Node
|
|
1060
|
+
"""
|
|
1061
|
+
description: String!
|
|
1062
|
+
|
|
1063
|
+
"""
|
|
1064
|
+
Beautiful images for beautiful Nodes
|
|
1065
|
+
"""
|
|
1066
|
+
image: String
|
|
1067
|
+
|
|
1068
|
+
"""
|
|
1069
|
+
The scope of this port
|
|
1070
|
+
"""
|
|
1071
|
+
scope: NodeScope!
|
|
1072
|
+
|
|
1073
|
+
"""
|
|
1074
|
+
The nodes this node tests
|
|
1075
|
+
"""
|
|
1076
|
+
isTestFor(
|
|
1077
|
+
"""
|
|
1078
|
+
Filter by values
|
|
1079
|
+
"""
|
|
1080
|
+
ids: [ID]
|
|
1081
|
+
package: String
|
|
1082
|
+
): [Node]
|
|
1083
|
+
|
|
1084
|
+
"""
|
|
1085
|
+
The hash of the Node (completely unique)
|
|
1086
|
+
"""
|
|
1087
|
+
hash: String!
|
|
1088
|
+
|
|
1089
|
+
"""
|
|
1090
|
+
"""
|
|
1091
|
+
createdAt: DateTime!
|
|
1092
|
+
args: [Port]
|
|
1093
|
+
returns: [Port]
|
|
1094
|
+
|
|
1095
|
+
"""
|
|
1096
|
+
The tests of its node
|
|
1097
|
+
"""
|
|
1098
|
+
tests(
|
|
1099
|
+
"""
|
|
1100
|
+
Filter by values
|
|
1101
|
+
"""
|
|
1102
|
+
ids: [ID]
|
|
1103
|
+
package: String
|
|
1104
|
+
): [Node]
|
|
1105
|
+
templates(
|
|
1106
|
+
"""
|
|
1107
|
+
Filter by values
|
|
1108
|
+
"""
|
|
1109
|
+
ids: [ID]
|
|
1110
|
+
package: String
|
|
1111
|
+
name: String
|
|
1112
|
+
interface: String
|
|
1113
|
+
scopes: [NodeScope]
|
|
1114
|
+
|
|
1115
|
+
"""
|
|
1116
|
+
Get active pods?
|
|
1117
|
+
"""
|
|
1118
|
+
providable: Boolean
|
|
1119
|
+
nodeName: String
|
|
1120
|
+
nodeDescription: String
|
|
1121
|
+
node: ID
|
|
1122
|
+
|
|
1123
|
+
"""
|
|
1124
|
+
Search
|
|
1125
|
+
"""
|
|
1126
|
+
search: String
|
|
1127
|
+
): [Template]
|
|
1128
|
+
|
|
1129
|
+
"""
|
|
1130
|
+
The node this reservation connects
|
|
1131
|
+
"""
|
|
1132
|
+
reservations: [Reservation!]!
|
|
1133
|
+
|
|
1134
|
+
"""
|
|
1135
|
+
The node this test belongs to
|
|
1136
|
+
"""
|
|
1137
|
+
testcases: [TestCase!]!
|
|
1138
|
+
}
|
|
1139
|
+
|
|
1140
|
+
type Collection {
|
|
1141
|
+
"""
|
|
1142
|
+
"""
|
|
1143
|
+
id: ID!
|
|
1144
|
+
|
|
1145
|
+
"""
|
|
1146
|
+
"""
|
|
1147
|
+
definedAt: DateTime!
|
|
1148
|
+
|
|
1149
|
+
"""
|
|
1150
|
+
The name of this Collection
|
|
1151
|
+
"""
|
|
1152
|
+
name: String!
|
|
1153
|
+
|
|
1154
|
+
"""
|
|
1155
|
+
A description for the Collection
|
|
1156
|
+
"""
|
|
1157
|
+
description: String!
|
|
1158
|
+
|
|
1159
|
+
"""
|
|
1160
|
+
The nodes this collection has
|
|
1161
|
+
"""
|
|
1162
|
+
nodes(
|
|
1163
|
+
"""
|
|
1164
|
+
Filter by values
|
|
1165
|
+
"""
|
|
1166
|
+
ids: [ID]
|
|
1167
|
+
package: String
|
|
1168
|
+
): [Node]
|
|
1169
|
+
}
|
|
1170
|
+
|
|
1171
|
+
"""
|
|
1172
|
+
An enumeration.
|
|
1173
|
+
"""
|
|
1174
|
+
enum NodeKind {
|
|
1175
|
+
"""
|
|
1176
|
+
Generator
|
|
1177
|
+
"""
|
|
1178
|
+
GENERATOR
|
|
1179
|
+
|
|
1180
|
+
"""
|
|
1181
|
+
Function
|
|
1182
|
+
"""
|
|
1183
|
+
FUNCTION
|
|
1184
|
+
}
|
|
1185
|
+
|
|
1186
|
+
type PortGroup {
|
|
1187
|
+
key: String!
|
|
1188
|
+
hidden: Boolean
|
|
1189
|
+
}
|
|
1190
|
+
|
|
1191
|
+
"""
|
|
1192
|
+
The `GenericScalar` scalar type represents a generic
|
|
1193
|
+
GraphQL scalar value that could be:
|
|
1194
|
+
String, Boolean, Int, Float, List or Object.
|
|
1195
|
+
"""
|
|
1196
|
+
scalar GenericScalar
|
|
1197
|
+
|
|
1198
|
+
type Protocol {
|
|
1199
|
+
"""
|
|
1200
|
+
"""
|
|
1201
|
+
id: ID!
|
|
1202
|
+
|
|
1203
|
+
"""
|
|
1204
|
+
The name of this Protocol
|
|
1205
|
+
"""
|
|
1206
|
+
name: String!
|
|
1207
|
+
|
|
1208
|
+
"""
|
|
1209
|
+
A description for the Protocol
|
|
1210
|
+
"""
|
|
1211
|
+
description: String!
|
|
1212
|
+
|
|
1213
|
+
"""
|
|
1214
|
+
The protocols this Node implements (e.g. Predicate)
|
|
1215
|
+
"""
|
|
1216
|
+
nodes: [Node!]!
|
|
1217
|
+
}
|
|
1218
|
+
|
|
1219
|
+
enum NodeScope {
|
|
1220
|
+
GLOBAL
|
|
1221
|
+
LOCAL
|
|
1222
|
+
BRIDGE_GLOBAL_TO_LOCAL
|
|
1223
|
+
BRIDGE_LOCAL_TO_GLOBAL
|
|
1224
|
+
}
|
|
1225
|
+
|
|
1226
|
+
"""
|
|
1227
|
+
A Port
|
|
1228
|
+
"""
|
|
1229
|
+
type Port {
|
|
1230
|
+
key: String!
|
|
1231
|
+
label: String
|
|
1232
|
+
|
|
1233
|
+
"""
|
|
1234
|
+
the type of input
|
|
1235
|
+
"""
|
|
1236
|
+
kind: PortKind!
|
|
1237
|
+
|
|
1238
|
+
"""
|
|
1239
|
+
A description for this Port
|
|
1240
|
+
"""
|
|
1241
|
+
description: String
|
|
1242
|
+
|
|
1243
|
+
"""
|
|
1244
|
+
The effects of this port
|
|
1245
|
+
"""
|
|
1246
|
+
effects: [Effect]
|
|
1247
|
+
|
|
1248
|
+
"""
|
|
1249
|
+
The corresponding Model
|
|
1250
|
+
"""
|
|
1251
|
+
identifier: Identifier
|
|
1252
|
+
|
|
1253
|
+
"""
|
|
1254
|
+
The scope of this port
|
|
1255
|
+
"""
|
|
1256
|
+
scope: Scope!
|
|
1257
|
+
nullable: Boolean!
|
|
1258
|
+
|
|
1259
|
+
"""
|
|
1260
|
+
The varients of this port (only for unions)
|
|
1261
|
+
"""
|
|
1262
|
+
variants: [ChildPort]
|
|
1263
|
+
default: Any
|
|
1264
|
+
|
|
1265
|
+
"""
|
|
1266
|
+
The child
|
|
1267
|
+
"""
|
|
1268
|
+
child: ChildPort
|
|
1269
|
+
|
|
1270
|
+
"""
|
|
1271
|
+
The annotations of this port
|
|
1272
|
+
"""
|
|
1273
|
+
annotations: [Annotation]
|
|
1274
|
+
|
|
1275
|
+
"""
|
|
1276
|
+
Description of the Widget
|
|
1277
|
+
"""
|
|
1278
|
+
assignWidget: Widget
|
|
1279
|
+
|
|
1280
|
+
"""
|
|
1281
|
+
A return widget
|
|
1282
|
+
"""
|
|
1283
|
+
returnWidget: ReturnWidget
|
|
1284
|
+
|
|
1285
|
+
"""
|
|
1286
|
+
The port groups
|
|
1287
|
+
"""
|
|
1288
|
+
groups: [String]
|
|
1289
|
+
}
|
|
1290
|
+
|
|
1291
|
+
enum PortKind {
|
|
1292
|
+
INT
|
|
1293
|
+
STRING
|
|
1294
|
+
STRUCTURE
|
|
1295
|
+
LIST
|
|
1296
|
+
BOOL
|
|
1297
|
+
DICT
|
|
1298
|
+
FLOAT
|
|
1299
|
+
UNION
|
|
1300
|
+
DATE
|
|
1301
|
+
}
|
|
1302
|
+
|
|
1303
|
+
type Effect {
|
|
1304
|
+
"""
|
|
1305
|
+
The dependencies of this effect
|
|
1306
|
+
"""
|
|
1307
|
+
dependencies: [Dependency]
|
|
1308
|
+
|
|
1309
|
+
"""
|
|
1310
|
+
The condition of the dependency
|
|
1311
|
+
"""
|
|
1312
|
+
kind: EffectKind!
|
|
1313
|
+
message: String
|
|
1314
|
+
}
|
|
1315
|
+
|
|
1316
|
+
type Dependency {
|
|
1317
|
+
"""
|
|
1318
|
+
The key of the port (null should be self)
|
|
1319
|
+
"""
|
|
1320
|
+
key: String
|
|
1321
|
+
|
|
1322
|
+
"""
|
|
1323
|
+
The condition of the dependency
|
|
1324
|
+
"""
|
|
1325
|
+
condition: LogicalCondition!
|
|
1326
|
+
value: GenericScalar!
|
|
1327
|
+
}
|
|
1328
|
+
|
|
1329
|
+
enum LogicalCondition {
|
|
1330
|
+
IS
|
|
1331
|
+
IS_NOT
|
|
1332
|
+
IN
|
|
1333
|
+
}
|
|
1334
|
+
|
|
1335
|
+
enum EffectKind {
|
|
1336
|
+
HIDDEN
|
|
1337
|
+
HIGHLIGHT
|
|
1338
|
+
WARN
|
|
1339
|
+
CRAZY
|
|
1340
|
+
}
|
|
1341
|
+
|
|
1342
|
+
"""
|
|
1343
|
+
A unique Structure identifier
|
|
1344
|
+
"""
|
|
1345
|
+
scalar Identifier
|
|
1346
|
+
|
|
1347
|
+
enum Scope {
|
|
1348
|
+
GLOBAL
|
|
1349
|
+
LOCAL
|
|
1350
|
+
}
|
|
1351
|
+
|
|
1352
|
+
type ChildPort {
|
|
1353
|
+
"""
|
|
1354
|
+
the type of input
|
|
1355
|
+
"""
|
|
1356
|
+
kind: PortKind!
|
|
1357
|
+
|
|
1358
|
+
"""
|
|
1359
|
+
The corresponding Model
|
|
1360
|
+
"""
|
|
1361
|
+
identifier: Identifier
|
|
1362
|
+
|
|
1363
|
+
"""
|
|
1364
|
+
The scope of this port
|
|
1365
|
+
"""
|
|
1366
|
+
scope: Scope!
|
|
1367
|
+
|
|
1368
|
+
"""
|
|
1369
|
+
The child
|
|
1370
|
+
"""
|
|
1371
|
+
child: ChildPort
|
|
1372
|
+
|
|
1373
|
+
"""
|
|
1374
|
+
Is this argument nullable
|
|
1375
|
+
"""
|
|
1376
|
+
nullable: Boolean!
|
|
1377
|
+
default: Any
|
|
1378
|
+
|
|
1379
|
+
"""
|
|
1380
|
+
The varients of this port (only for unions)
|
|
1381
|
+
"""
|
|
1382
|
+
variants: [ChildPort]
|
|
1383
|
+
|
|
1384
|
+
"""
|
|
1385
|
+
The annotations of this port
|
|
1386
|
+
"""
|
|
1387
|
+
annotations: [Annotation]
|
|
1388
|
+
|
|
1389
|
+
"""
|
|
1390
|
+
Description of the Widget
|
|
1391
|
+
"""
|
|
1392
|
+
assignWidget: Widget
|
|
1393
|
+
|
|
1394
|
+
"""
|
|
1395
|
+
A return widget
|
|
1396
|
+
"""
|
|
1397
|
+
returnWidget: ReturnWidget
|
|
1398
|
+
}
|
|
1399
|
+
|
|
1400
|
+
"""
|
|
1401
|
+
Any any field
|
|
1402
|
+
"""
|
|
1403
|
+
scalar Any
|
|
1404
|
+
|
|
1405
|
+
interface Annotation {
|
|
1406
|
+
"""
|
|
1407
|
+
The name of the annotation
|
|
1408
|
+
"""
|
|
1409
|
+
kind: String
|
|
1410
|
+
}
|
|
1411
|
+
|
|
1412
|
+
interface Widget {
|
|
1413
|
+
kind: String!
|
|
1414
|
+
}
|
|
1415
|
+
|
|
1416
|
+
interface ReturnWidget {
|
|
1417
|
+
kind: String!
|
|
1418
|
+
}
|
|
1419
|
+
|
|
1420
|
+
type Template {
|
|
1421
|
+
"""
|
|
1422
|
+
"""
|
|
1423
|
+
id: ID!
|
|
1424
|
+
|
|
1425
|
+
"""
|
|
1426
|
+
Interface (think Function)
|
|
1427
|
+
"""
|
|
1428
|
+
interface: String!
|
|
1429
|
+
|
|
1430
|
+
"""
|
|
1431
|
+
The node this template is implementatig
|
|
1432
|
+
"""
|
|
1433
|
+
node: Node!
|
|
1434
|
+
|
|
1435
|
+
"""
|
|
1436
|
+
The associated registry for this Template
|
|
1437
|
+
"""
|
|
1438
|
+
agent: Agent!
|
|
1439
|
+
|
|
1440
|
+
"""
|
|
1441
|
+
A name for this Template
|
|
1442
|
+
"""
|
|
1443
|
+
name: String!
|
|
1444
|
+
|
|
1445
|
+
"""
|
|
1446
|
+
The extentions of this template
|
|
1447
|
+
"""
|
|
1448
|
+
extensions: [String]
|
|
1449
|
+
policy: GenericScalar
|
|
1450
|
+
params: GenericScalar
|
|
1451
|
+
|
|
1452
|
+
"""
|
|
1453
|
+
Who created this template on this instance
|
|
1454
|
+
"""
|
|
1455
|
+
creator: User
|
|
1456
|
+
|
|
1457
|
+
"""
|
|
1458
|
+
"""
|
|
1459
|
+
createdAt: DateTime!
|
|
1460
|
+
|
|
1461
|
+
"""
|
|
1462
|
+
"""
|
|
1463
|
+
updatedAt: DateTime!
|
|
1464
|
+
provisions(
|
|
1465
|
+
"""
|
|
1466
|
+
Filter by values
|
|
1467
|
+
"""
|
|
1468
|
+
ids: [ID]
|
|
1469
|
+
status: [ProvisionStatusInput]
|
|
1470
|
+
agent: ID
|
|
1471
|
+
client: ID
|
|
1472
|
+
clientId: String
|
|
1473
|
+
): [Provision]
|
|
1474
|
+
|
|
1475
|
+
"""
|
|
1476
|
+
The template this reservation connects
|
|
1477
|
+
"""
|
|
1478
|
+
reservations: [Reservation!]!
|
|
1479
|
+
|
|
1480
|
+
"""
|
|
1481
|
+
"""
|
|
1482
|
+
testresults: [TestResult!]!
|
|
1483
|
+
}
|
|
1484
|
+
|
|
1485
|
+
type Agent {
|
|
1486
|
+
"""
|
|
1487
|
+
"""
|
|
1488
|
+
id: ID!
|
|
1489
|
+
|
|
1490
|
+
"""
|
|
1491
|
+
"""
|
|
1492
|
+
installedAt: DateTime!
|
|
1493
|
+
|
|
1494
|
+
"""
|
|
1495
|
+
This providers Name
|
|
1496
|
+
"""
|
|
1497
|
+
name: String!
|
|
1498
|
+
|
|
1499
|
+
"""
|
|
1500
|
+
"""
|
|
1501
|
+
instanceId: String!
|
|
1502
|
+
|
|
1503
|
+
"""
|
|
1504
|
+
The Channel we are listening to
|
|
1505
|
+
"""
|
|
1506
|
+
unique: String!
|
|
1507
|
+
|
|
1508
|
+
"""
|
|
1509
|
+
The Instance this Agent is running on
|
|
1510
|
+
"""
|
|
1511
|
+
onInstance: String!
|
|
1512
|
+
|
|
1513
|
+
"""
|
|
1514
|
+
The Status of this Agent
|
|
1515
|
+
"""
|
|
1516
|
+
status: AgentStatus!
|
|
1517
|
+
|
|
1518
|
+
"""
|
|
1519
|
+
The provide might be limited to a instance like ImageJ belonging to a specific person. Is nullable for backend users
|
|
1520
|
+
"""
|
|
1521
|
+
registry: Registry
|
|
1522
|
+
|
|
1523
|
+
"""
|
|
1524
|
+
If this Agent is blocked, it will not be used for provision, nor will it be able to provide
|
|
1525
|
+
"""
|
|
1526
|
+
blocked: Boolean!
|
|
1527
|
+
|
|
1528
|
+
"""
|
|
1529
|
+
The associated registry for this Template
|
|
1530
|
+
"""
|
|
1531
|
+
templates: [Template!]!
|
|
1532
|
+
|
|
1533
|
+
"""
|
|
1534
|
+
Is this Provision bound to a certain Agent?
|
|
1535
|
+
"""
|
|
1536
|
+
provisions: [Provision!]!
|
|
1537
|
+
clientId: String!
|
|
1538
|
+
}
|
|
1539
|
+
|
|
1540
|
+
"""
|
|
1541
|
+
An enumeration.
|
|
1542
|
+
"""
|
|
1543
|
+
enum AgentStatus {
|
|
1544
|
+
"""
|
|
1545
|
+
Active
|
|
1546
|
+
"""
|
|
1547
|
+
ACTIVE
|
|
1548
|
+
|
|
1549
|
+
"""
|
|
1550
|
+
Just kicked
|
|
1551
|
+
"""
|
|
1552
|
+
KICKED
|
|
1553
|
+
|
|
1554
|
+
"""
|
|
1555
|
+
Disconnected
|
|
1556
|
+
"""
|
|
1557
|
+
DISCONNECTED
|
|
1558
|
+
|
|
1559
|
+
"""
|
|
1560
|
+
Complete Vanilla Scenario after a forced restart of
|
|
1561
|
+
"""
|
|
1562
|
+
VANILLA
|
|
1563
|
+
}
|
|
1564
|
+
|
|
1565
|
+
type Provision {
|
|
1566
|
+
"""
|
|
1567
|
+
"""
|
|
1568
|
+
id: ID!
|
|
1569
|
+
|
|
1570
|
+
"""
|
|
1571
|
+
A Unique identifier for this Topic
|
|
1572
|
+
"""
|
|
1573
|
+
unique: UUID!
|
|
1574
|
+
|
|
1575
|
+
"""
|
|
1576
|
+
The Deployment Mode for this Provisions
|
|
1577
|
+
"""
|
|
1578
|
+
mode: ProvisionMode!
|
|
1579
|
+
|
|
1580
|
+
"""
|
|
1581
|
+
The Unique identifier of this Provision
|
|
1582
|
+
"""
|
|
1583
|
+
reference: String!
|
|
1584
|
+
|
|
1585
|
+
"""
|
|
1586
|
+
Reservation that created this provision (if we were auto created)
|
|
1587
|
+
"""
|
|
1588
|
+
reservation: Reservation
|
|
1589
|
+
|
|
1590
|
+
"""
|
|
1591
|
+
Is this Provision bound to a certain Agent?
|
|
1592
|
+
"""
|
|
1593
|
+
agent: Agent
|
|
1594
|
+
|
|
1595
|
+
"""
|
|
1596
|
+
A Short Hand Way to identify this reservation for you
|
|
1597
|
+
"""
|
|
1598
|
+
title: String
|
|
1599
|
+
template: Template!
|
|
1600
|
+
|
|
1601
|
+
"""
|
|
1602
|
+
Is the connection to this Provision lost?
|
|
1603
|
+
"""
|
|
1604
|
+
dropped: Boolean!
|
|
1605
|
+
params: ProvisionParams
|
|
1606
|
+
extensions: GenericScalar
|
|
1607
|
+
context: GenericScalar
|
|
1608
|
+
|
|
1609
|
+
"""
|
|
1610
|
+
Access Strategy for this Provision
|
|
1611
|
+
"""
|
|
1612
|
+
access: ProvisionAccess!
|
|
1613
|
+
|
|
1614
|
+
"""
|
|
1615
|
+
Current lifecycle of Provision
|
|
1616
|
+
"""
|
|
1617
|
+
status: ProvisionStatus!
|
|
1618
|
+
|
|
1619
|
+
"""
|
|
1620
|
+
Clear Text status of the Provision as for now
|
|
1621
|
+
"""
|
|
1622
|
+
statusmessage: String!
|
|
1623
|
+
|
|
1624
|
+
"""
|
|
1625
|
+
"""
|
|
1626
|
+
createdAt: DateTime!
|
|
1627
|
+
|
|
1628
|
+
"""
|
|
1629
|
+
"""
|
|
1630
|
+
updatedAt: DateTime!
|
|
1631
|
+
|
|
1632
|
+
"""
|
|
1633
|
+
This provision creator
|
|
1634
|
+
"""
|
|
1635
|
+
creator: User
|
|
1636
|
+
|
|
1637
|
+
"""
|
|
1638
|
+
This provision creator
|
|
1639
|
+
"""
|
|
1640
|
+
app: LokApp
|
|
1641
|
+
log(
|
|
1642
|
+
"""
|
|
1643
|
+
Filter by values
|
|
1644
|
+
"""
|
|
1645
|
+
ids: [ID]
|
|
1646
|
+
level: LogLevelInput
|
|
1647
|
+
createdAt: String
|
|
1648
|
+
|
|
1649
|
+
"""
|
|
1650
|
+
Ordering
|
|
1651
|
+
"""
|
|
1652
|
+
o: String
|
|
1653
|
+
): [ProvisionLog]
|
|
1654
|
+
|
|
1655
|
+
"""
|
|
1656
|
+
The Provisions this reservation connects
|
|
1657
|
+
"""
|
|
1658
|
+
reservations: [Reservation!]!
|
|
1659
|
+
|
|
1660
|
+
"""
|
|
1661
|
+
Was this Reservation caused by a Provision?
|
|
1662
|
+
"""
|
|
1663
|
+
causedReservations: [Reservation!]!
|
|
1664
|
+
assignations(
|
|
1665
|
+
"""
|
|
1666
|
+
Filter by values
|
|
1667
|
+
"""
|
|
1668
|
+
ids: [ID]
|
|
1669
|
+
status: [AssignationStatusInput]
|
|
1670
|
+
reference: String
|
|
1671
|
+
reservation: ID
|
|
1672
|
+
reservationReference: String
|
|
1673
|
+
parent: ID
|
|
1674
|
+
|
|
1675
|
+
"""
|
|
1676
|
+
Ordering
|
|
1677
|
+
"""
|
|
1678
|
+
o: String
|
|
1679
|
+
): [Assignation]
|
|
1680
|
+
}
|
|
1681
|
+
|
|
1682
|
+
"""
|
|
1683
|
+
Leverages the internal Python implmeentation of UUID (uuid.UUID) to provide native UUID objects
|
|
1684
|
+
in fields, resolvers and input.
|
|
1685
|
+
"""
|
|
1686
|
+
scalar UUID
|
|
1687
|
+
|
|
1688
|
+
"""
|
|
1689
|
+
An enumeration.
|
|
1690
|
+
"""
|
|
1691
|
+
enum ProvisionMode {
|
|
1692
|
+
"""
|
|
1693
|
+
Debug Mode (Node might be constantly evolving)
|
|
1694
|
+
"""
|
|
1695
|
+
DEBUG
|
|
1696
|
+
|
|
1697
|
+
"""
|
|
1698
|
+
Production Mode (Node might be constantly evolving)
|
|
1699
|
+
"""
|
|
1700
|
+
PRODUCTION
|
|
1701
|
+
}
|
|
1702
|
+
|
|
1703
|
+
type Reservation {
|
|
1704
|
+
"""
|
|
1705
|
+
"""
|
|
1706
|
+
id: ID!
|
|
1707
|
+
|
|
1708
|
+
"""
|
|
1709
|
+
The channel of this Reservation
|
|
1710
|
+
"""
|
|
1711
|
+
channel: String!
|
|
1712
|
+
|
|
1713
|
+
"""
|
|
1714
|
+
Is this reservation happy? (aka: does it have as many linked provisions as desired
|
|
1715
|
+
"""
|
|
1716
|
+
happy: Boolean!
|
|
1717
|
+
|
|
1718
|
+
"""
|
|
1719
|
+
Is this reservation viable? (aka: does it have as many linked provisions as minimal
|
|
1720
|
+
"""
|
|
1721
|
+
viable: Boolean!
|
|
1722
|
+
|
|
1723
|
+
"""
|
|
1724
|
+
Allow automatic requests for this reservation
|
|
1725
|
+
"""
|
|
1726
|
+
allowAutoRequest: Boolean!
|
|
1727
|
+
|
|
1728
|
+
"""
|
|
1729
|
+
The node this reservation connects
|
|
1730
|
+
"""
|
|
1731
|
+
node: Node!
|
|
1732
|
+
|
|
1733
|
+
"""
|
|
1734
|
+
A Short Hand Way to identify this reservation for you
|
|
1735
|
+
"""
|
|
1736
|
+
title: String
|
|
1737
|
+
|
|
1738
|
+
"""
|
|
1739
|
+
The template this reservation connects
|
|
1740
|
+
"""
|
|
1741
|
+
template: Template
|
|
1742
|
+
|
|
1743
|
+
"""
|
|
1744
|
+
The Provisions this reservation connects
|
|
1745
|
+
"""
|
|
1746
|
+
provisions: [Provision!]!
|
|
1747
|
+
params: ReserveParams
|
|
1748
|
+
binds: Binds
|
|
1749
|
+
|
|
1750
|
+
"""
|
|
1751
|
+
The hash of the Reservation
|
|
1752
|
+
"""
|
|
1753
|
+
hash: String!
|
|
1754
|
+
|
|
1755
|
+
"""
|
|
1756
|
+
Current lifecycle of Reservation
|
|
1757
|
+
"""
|
|
1758
|
+
status: ReservationStatus!
|
|
1759
|
+
|
|
1760
|
+
"""
|
|
1761
|
+
Clear Text status of the Provision as for now
|
|
1762
|
+
"""
|
|
1763
|
+
statusmessage: String!
|
|
1764
|
+
|
|
1765
|
+
"""
|
|
1766
|
+
Callback
|
|
1767
|
+
"""
|
|
1768
|
+
callback: String
|
|
1769
|
+
|
|
1770
|
+
"""
|
|
1771
|
+
Provider
|
|
1772
|
+
"""
|
|
1773
|
+
progress: String
|
|
1774
|
+
|
|
1775
|
+
"""
|
|
1776
|
+
"""
|
|
1777
|
+
createdAt: DateTime!
|
|
1778
|
+
|
|
1779
|
+
"""
|
|
1780
|
+
"""
|
|
1781
|
+
updatedAt: DateTime!
|
|
1782
|
+
|
|
1783
|
+
"""
|
|
1784
|
+
This Reservations app
|
|
1785
|
+
"""
|
|
1786
|
+
waiter: Waiter!
|
|
1787
|
+
|
|
1788
|
+
"""
|
|
1789
|
+
This Reservations app
|
|
1790
|
+
"""
|
|
1791
|
+
app: LokApp
|
|
1792
|
+
|
|
1793
|
+
"""
|
|
1794
|
+
This Reservations creator
|
|
1795
|
+
"""
|
|
1796
|
+
creator: User
|
|
1797
|
+
|
|
1798
|
+
"""
|
|
1799
|
+
The Unique identifier of this Assignation
|
|
1800
|
+
"""
|
|
1801
|
+
reference: String!
|
|
1802
|
+
|
|
1803
|
+
"""
|
|
1804
|
+
Was this Reservation caused by a Provision?
|
|
1805
|
+
"""
|
|
1806
|
+
provision: Provision
|
|
1807
|
+
|
|
1808
|
+
"""
|
|
1809
|
+
Reservation that created this provision (if we were auto created)
|
|
1810
|
+
"""
|
|
1811
|
+
createdProvisions: [Provision!]!
|
|
1812
|
+
log(
|
|
1813
|
+
"""
|
|
1814
|
+
Filter by values
|
|
1815
|
+
"""
|
|
1816
|
+
ids: [ID]
|
|
1817
|
+
level: LogLevelInput
|
|
1818
|
+
createdAt: String
|
|
1819
|
+
|
|
1820
|
+
"""
|
|
1821
|
+
Ordering
|
|
1822
|
+
"""
|
|
1823
|
+
o: String
|
|
1824
|
+
): [ReservationLog]
|
|
1825
|
+
|
|
1826
|
+
"""
|
|
1827
|
+
Which reservation are we assigning to
|
|
1828
|
+
"""
|
|
1829
|
+
assignations: [Assignation!]!
|
|
1830
|
+
}
|
|
1831
|
+
|
|
1832
|
+
type ReserveParams {
|
|
1833
|
+
"""
|
|
1834
|
+
Registry thar are allowed
|
|
1835
|
+
"""
|
|
1836
|
+
registries: [ID]
|
|
1837
|
+
|
|
1838
|
+
"""
|
|
1839
|
+
Templates that can be selected
|
|
1840
|
+
"""
|
|
1841
|
+
templates: [ID]
|
|
1842
|
+
|
|
1843
|
+
"""
|
|
1844
|
+
The desired amount of Instances
|
|
1845
|
+
"""
|
|
1846
|
+
desiredInstances: Int
|
|
1847
|
+
|
|
1848
|
+
"""
|
|
1849
|
+
Autoproviding
|
|
1850
|
+
"""
|
|
1851
|
+
autoProvide: Boolean
|
|
1852
|
+
|
|
1853
|
+
"""
|
|
1854
|
+
Autounproviding
|
|
1855
|
+
"""
|
|
1856
|
+
autoUnprovide: Boolean
|
|
1857
|
+
|
|
1858
|
+
"""
|
|
1859
|
+
The minimal amount of Instances
|
|
1860
|
+
"""
|
|
1861
|
+
minimalInstances: Int
|
|
1862
|
+
}
|
|
1863
|
+
|
|
1864
|
+
type Binds {
|
|
1865
|
+
"""
|
|
1866
|
+
The clients of this bind
|
|
1867
|
+
"""
|
|
1868
|
+
clients: [LokClient]
|
|
1869
|
+
|
|
1870
|
+
"""
|
|
1871
|
+
The templates of this bind
|
|
1872
|
+
"""
|
|
1873
|
+
templates: [Template]
|
|
1874
|
+
}
|
|
1875
|
+
|
|
1876
|
+
"""
|
|
1877
|
+
An enumeration.
|
|
1878
|
+
"""
|
|
1879
|
+
enum ReservationStatus {
|
|
1880
|
+
"""
|
|
1881
|
+
Routing (Reservation has been requested but no Topic found yet)
|
|
1882
|
+
"""
|
|
1883
|
+
ROUTING
|
|
1884
|
+
|
|
1885
|
+
"""
|
|
1886
|
+
SHould signal that this reservation is non viable (has less linked provisions than minimalInstances)
|
|
1887
|
+
"""
|
|
1888
|
+
NON_VIABLE
|
|
1889
|
+
|
|
1890
|
+
"""
|
|
1891
|
+
Providing (Reservation required the provision of a new worker)
|
|
1892
|
+
"""
|
|
1893
|
+
PROVIDING
|
|
1894
|
+
|
|
1895
|
+
"""
|
|
1896
|
+
Waiting (We are waiting for any assignable Topic to come online)
|
|
1897
|
+
"""
|
|
1898
|
+
WAITING
|
|
1899
|
+
|
|
1900
|
+
"""
|
|
1901
|
+
Rerouting (State of provisions this reservation connects to have changed and require Retouring)
|
|
1902
|
+
"""
|
|
1903
|
+
REROUTING
|
|
1904
|
+
|
|
1905
|
+
"""
|
|
1906
|
+
Disconnect (State of provisions this reservation connects to have changed and require Retouring)
|
|
1907
|
+
"""
|
|
1908
|
+
DISCONNECTED
|
|
1909
|
+
|
|
1910
|
+
"""
|
|
1911
|
+
Disconnect (State of provisions this reservation connects to have changed and require Retouring)
|
|
1912
|
+
"""
|
|
1913
|
+
DISCONNECT
|
|
1914
|
+
|
|
1915
|
+
"""
|
|
1916
|
+
Cancelling (Reervation is currently being cancelled)
|
|
1917
|
+
"""
|
|
1918
|
+
CANCELING
|
|
1919
|
+
|
|
1920
|
+
"""
|
|
1921
|
+
Active (Reservation is active and accepts assignments
|
|
1922
|
+
"""
|
|
1923
|
+
ACTIVE
|
|
1924
|
+
|
|
1925
|
+
"""
|
|
1926
|
+
Error (Reservation was not able to be performed (See StatusMessage)
|
|
1927
|
+
"""
|
|
1928
|
+
ERROR
|
|
1929
|
+
|
|
1930
|
+
"""
|
|
1931
|
+
Ended (Reservation was ended by the the Platform and is no longer active)
|
|
1932
|
+
"""
|
|
1933
|
+
ENDED
|
|
1934
|
+
|
|
1935
|
+
"""
|
|
1936
|
+
Cancelled (Reservation was cancelled by user and is no longer active)
|
|
1937
|
+
"""
|
|
1938
|
+
CANCELLED
|
|
1939
|
+
|
|
1940
|
+
"""
|
|
1941
|
+
Critical (Reservation failed with an Critical Error)
|
|
1942
|
+
"""
|
|
1943
|
+
CRITICAL
|
|
1944
|
+
}
|
|
1945
|
+
|
|
1946
|
+
type Waiter {
|
|
1947
|
+
"""
|
|
1948
|
+
"""
|
|
1949
|
+
id: ID!
|
|
1950
|
+
|
|
1951
|
+
"""
|
|
1952
|
+
"""
|
|
1953
|
+
installedAt: DateTime!
|
|
1954
|
+
|
|
1955
|
+
"""
|
|
1956
|
+
This waiters Name
|
|
1957
|
+
"""
|
|
1958
|
+
name: String!
|
|
1959
|
+
|
|
1960
|
+
"""
|
|
1961
|
+
"""
|
|
1962
|
+
identifier: String!
|
|
1963
|
+
|
|
1964
|
+
"""
|
|
1965
|
+
The Channel we are listening to
|
|
1966
|
+
"""
|
|
1967
|
+
unique: String!
|
|
1968
|
+
|
|
1969
|
+
"""
|
|
1970
|
+
The Status of this Waiter
|
|
1971
|
+
"""
|
|
1972
|
+
status: WaiterStatus!
|
|
1973
|
+
|
|
1974
|
+
"""
|
|
1975
|
+
The provide might be limited to a instance like ImageJ belonging to a specific person. Is nullable for backend users
|
|
1976
|
+
"""
|
|
1977
|
+
registry: Registry
|
|
1978
|
+
|
|
1979
|
+
"""
|
|
1980
|
+
This Reservations app
|
|
1981
|
+
"""
|
|
1982
|
+
reservations: [Reservation!]!
|
|
1983
|
+
|
|
1984
|
+
"""
|
|
1985
|
+
This Assignation app
|
|
1986
|
+
"""
|
|
1987
|
+
assignations: [Assignation!]!
|
|
1988
|
+
clientId: String!
|
|
1989
|
+
}
|
|
1990
|
+
|
|
1991
|
+
"""
|
|
1992
|
+
An enumeration.
|
|
1993
|
+
"""
|
|
1994
|
+
enum WaiterStatus {
|
|
1995
|
+
"""
|
|
1996
|
+
Active
|
|
1997
|
+
"""
|
|
1998
|
+
ACTIVE
|
|
1999
|
+
|
|
2000
|
+
"""
|
|
2001
|
+
Disconnected
|
|
2002
|
+
"""
|
|
2003
|
+
DISCONNECTED
|
|
2004
|
+
|
|
2005
|
+
"""
|
|
2006
|
+
Complete Vanilla Scenario after a forced restart of
|
|
2007
|
+
"""
|
|
2008
|
+
VANILLA
|
|
2009
|
+
}
|
|
2010
|
+
|
|
2011
|
+
type Assignation {
|
|
2012
|
+
"""
|
|
2013
|
+
"""
|
|
2014
|
+
id: ID!
|
|
2015
|
+
|
|
2016
|
+
"""
|
|
2017
|
+
Which reservation are we assigning to
|
|
2018
|
+
"""
|
|
2019
|
+
reservation: Reservation
|
|
2020
|
+
context: GenericScalar
|
|
2021
|
+
|
|
2022
|
+
"""
|
|
2023
|
+
The progress of this assignation
|
|
2024
|
+
"""
|
|
2025
|
+
progress: Int
|
|
2026
|
+
args: [Any]
|
|
2027
|
+
|
|
2028
|
+
"""
|
|
2029
|
+
Which Provision did we end up being assigned to
|
|
2030
|
+
"""
|
|
2031
|
+
provision: Provision
|
|
2032
|
+
|
|
2033
|
+
"""
|
|
2034
|
+
This Assignation app
|
|
2035
|
+
"""
|
|
2036
|
+
waiter: Waiter
|
|
2037
|
+
kwargs: GenericScalar
|
|
2038
|
+
returns: [Any]
|
|
2039
|
+
|
|
2040
|
+
"""
|
|
2041
|
+
Current lifecycle of Assignation
|
|
2042
|
+
"""
|
|
2043
|
+
status: AssignationStatus!
|
|
2044
|
+
|
|
2045
|
+
"""
|
|
2046
|
+
Clear Text status of the Assignation as for now
|
|
2047
|
+
"""
|
|
2048
|
+
statusmessage: String!
|
|
2049
|
+
|
|
2050
|
+
"""
|
|
2051
|
+
"""
|
|
2052
|
+
createdAt: DateTime!
|
|
2053
|
+
|
|
2054
|
+
"""
|
|
2055
|
+
"""
|
|
2056
|
+
updatedAt: DateTime!
|
|
2057
|
+
|
|
2058
|
+
"""
|
|
2059
|
+
The Unique identifier of this Assignation considering its parent
|
|
2060
|
+
"""
|
|
2061
|
+
reference: String!
|
|
2062
|
+
|
|
2063
|
+
"""
|
|
2064
|
+
The creator is this assignation
|
|
2065
|
+
"""
|
|
2066
|
+
creator: User
|
|
2067
|
+
|
|
2068
|
+
"""
|
|
2069
|
+
The app is this assignation
|
|
2070
|
+
"""
|
|
2071
|
+
app: LokApp
|
|
2072
|
+
|
|
2073
|
+
"""
|
|
2074
|
+
The Assignations parent
|
|
2075
|
+
"""
|
|
2076
|
+
parent: Assignation
|
|
2077
|
+
|
|
2078
|
+
"""
|
|
2079
|
+
The Assignations parent
|
|
2080
|
+
"""
|
|
2081
|
+
children: [Assignation!]!
|
|
2082
|
+
log(
|
|
2083
|
+
"""
|
|
2084
|
+
Filter by values
|
|
2085
|
+
"""
|
|
2086
|
+
ids: [ID]
|
|
2087
|
+
level: LogLevelInput
|
|
2088
|
+
createdAt: String
|
|
2089
|
+
|
|
2090
|
+
"""
|
|
2091
|
+
Ordering
|
|
2092
|
+
"""
|
|
2093
|
+
o: String
|
|
2094
|
+
): [AssignationLog]
|
|
2095
|
+
}
|
|
2096
|
+
|
|
2097
|
+
"""
|
|
2098
|
+
An enumeration.
|
|
2099
|
+
"""
|
|
2100
|
+
enum AssignationStatus {
|
|
2101
|
+
"""
|
|
2102
|
+
Pending
|
|
2103
|
+
"""
|
|
2104
|
+
PENDING
|
|
2105
|
+
|
|
2106
|
+
"""
|
|
2107
|
+
Bound
|
|
2108
|
+
"""
|
|
2109
|
+
BOUND
|
|
2110
|
+
|
|
2111
|
+
"""
|
|
2112
|
+
Acknowledged
|
|
2113
|
+
"""
|
|
2114
|
+
ACKNOWLEDGED
|
|
2115
|
+
|
|
2116
|
+
"""
|
|
2117
|
+
Assignation Returned (Only for Functions)
|
|
2118
|
+
"""
|
|
2119
|
+
RETURNED
|
|
2120
|
+
|
|
2121
|
+
"""
|
|
2122
|
+
Denied (Assingment was rejected)
|
|
2123
|
+
"""
|
|
2124
|
+
DENIED
|
|
2125
|
+
|
|
2126
|
+
"""
|
|
2127
|
+
Was able to assign to a pod
|
|
2128
|
+
"""
|
|
2129
|
+
ASSIGNED
|
|
2130
|
+
|
|
2131
|
+
"""
|
|
2132
|
+
Progress (Assignment has current Progress)
|
|
2133
|
+
"""
|
|
2134
|
+
PROGRESS
|
|
2135
|
+
|
|
2136
|
+
"""
|
|
2137
|
+
Received (Assignment was received by an agent)
|
|
2138
|
+
"""
|
|
2139
|
+
RECEIVED
|
|
2140
|
+
|
|
2141
|
+
"""
|
|
2142
|
+
Error (Retrieable)
|
|
2143
|
+
"""
|
|
2144
|
+
ERROR
|
|
2145
|
+
|
|
2146
|
+
"""
|
|
2147
|
+
Critical Error (No Retries available)
|
|
2148
|
+
"""
|
|
2149
|
+
CRITICAL
|
|
2150
|
+
|
|
2151
|
+
"""
|
|
2152
|
+
Assinment is beeing cancelled
|
|
2153
|
+
"""
|
|
2154
|
+
CANCEL
|
|
2155
|
+
|
|
2156
|
+
"""
|
|
2157
|
+
Cancelling (Assingment is currently being cancelled)
|
|
2158
|
+
"""
|
|
2159
|
+
CANCELING
|
|
2160
|
+
|
|
2161
|
+
"""
|
|
2162
|
+
Assignment has been cancelled.
|
|
2163
|
+
"""
|
|
2164
|
+
CANCELLED
|
|
2165
|
+
|
|
2166
|
+
"""
|
|
2167
|
+
Assignment yielded a value (only for Generators)
|
|
2168
|
+
"""
|
|
2169
|
+
YIELD
|
|
2170
|
+
|
|
2171
|
+
"""
|
|
2172
|
+
Assignment has finished
|
|
2173
|
+
"""
|
|
2174
|
+
DONE
|
|
2175
|
+
}
|
|
2176
|
+
|
|
2177
|
+
type AssignationLog {
|
|
2178
|
+
"""
|
|
2179
|
+
"""
|
|
2180
|
+
id: ID!
|
|
2181
|
+
|
|
2182
|
+
"""
|
|
2183
|
+
"""
|
|
2184
|
+
createdAt: DateTime!
|
|
2185
|
+
|
|
2186
|
+
"""
|
|
2187
|
+
The reservation this log item belongs to
|
|
2188
|
+
"""
|
|
2189
|
+
assignation: Assignation!
|
|
2190
|
+
|
|
2191
|
+
"""
|
|
2192
|
+
"""
|
|
2193
|
+
message: String
|
|
2194
|
+
|
|
2195
|
+
"""
|
|
2196
|
+
"""
|
|
2197
|
+
level: AssignationLogLevel!
|
|
2198
|
+
}
|
|
2199
|
+
|
|
2200
|
+
"""
|
|
2201
|
+
An enumeration.
|
|
2202
|
+
"""
|
|
2203
|
+
enum AssignationLogLevel {
|
|
2204
|
+
"""
|
|
2205
|
+
CRITICAL Level
|
|
2206
|
+
"""
|
|
2207
|
+
CRITICAL
|
|
2208
|
+
|
|
2209
|
+
"""
|
|
2210
|
+
INFO Level
|
|
2211
|
+
"""
|
|
2212
|
+
INFO
|
|
2213
|
+
|
|
2214
|
+
"""
|
|
2215
|
+
DEBUG Level
|
|
2216
|
+
"""
|
|
2217
|
+
DEBUG
|
|
2218
|
+
|
|
2219
|
+
"""
|
|
2220
|
+
ERROR Level
|
|
2221
|
+
"""
|
|
2222
|
+
ERROR
|
|
2223
|
+
|
|
2224
|
+
"""
|
|
2225
|
+
WARN Level
|
|
2226
|
+
"""
|
|
2227
|
+
WARN
|
|
2228
|
+
|
|
2229
|
+
"""
|
|
2230
|
+
YIELD Level
|
|
2231
|
+
"""
|
|
2232
|
+
YIELD
|
|
2233
|
+
|
|
2234
|
+
"""
|
|
2235
|
+
Cancel Level
|
|
2236
|
+
"""
|
|
2237
|
+
CANCEL
|
|
2238
|
+
|
|
2239
|
+
"""
|
|
2240
|
+
YIELD Level
|
|
2241
|
+
"""
|
|
2242
|
+
RETURN
|
|
2243
|
+
|
|
2244
|
+
"""
|
|
2245
|
+
Done Level
|
|
2246
|
+
"""
|
|
2247
|
+
DONE
|
|
2248
|
+
|
|
2249
|
+
"""
|
|
2250
|
+
Event Level (only handled by plugins)
|
|
2251
|
+
"""
|
|
2252
|
+
EVENT
|
|
2253
|
+
}
|
|
2254
|
+
|
|
2255
|
+
"""
|
|
2256
|
+
An enumeration.
|
|
2257
|
+
"""
|
|
2258
|
+
enum LogLevelInput {
|
|
2259
|
+
"""
|
|
2260
|
+
CRITICAL Level
|
|
2261
|
+
"""
|
|
2262
|
+
CRITICAL
|
|
2263
|
+
|
|
2264
|
+
"""
|
|
2265
|
+
INFO Level
|
|
2266
|
+
"""
|
|
2267
|
+
INFO
|
|
2268
|
+
|
|
2269
|
+
"""
|
|
2270
|
+
DEBUG Level
|
|
2271
|
+
"""
|
|
2272
|
+
DEBUG
|
|
2273
|
+
|
|
2274
|
+
"""
|
|
2275
|
+
ERROR Level
|
|
2276
|
+
"""
|
|
2277
|
+
ERROR
|
|
2278
|
+
|
|
2279
|
+
"""
|
|
2280
|
+
WARN Level
|
|
2281
|
+
"""
|
|
2282
|
+
WARN
|
|
2283
|
+
|
|
2284
|
+
"""
|
|
2285
|
+
YIELD Level
|
|
2286
|
+
"""
|
|
2287
|
+
YIELD
|
|
2288
|
+
|
|
2289
|
+
"""
|
|
2290
|
+
Cancel Level
|
|
2291
|
+
"""
|
|
2292
|
+
CANCEL
|
|
2293
|
+
|
|
2294
|
+
"""
|
|
2295
|
+
YIELD Level
|
|
2296
|
+
"""
|
|
2297
|
+
RETURN
|
|
2298
|
+
|
|
2299
|
+
"""
|
|
2300
|
+
Done Level
|
|
2301
|
+
"""
|
|
2302
|
+
DONE
|
|
2303
|
+
|
|
2304
|
+
"""
|
|
2305
|
+
Event Level (only handled by plugins)
|
|
2306
|
+
"""
|
|
2307
|
+
EVENT
|
|
2308
|
+
}
|
|
2309
|
+
|
|
2310
|
+
type ReservationLog {
|
|
2311
|
+
"""
|
|
2312
|
+
"""
|
|
2313
|
+
id: ID!
|
|
2314
|
+
|
|
2315
|
+
"""
|
|
2316
|
+
"""
|
|
2317
|
+
createdAt: DateTime!
|
|
2318
|
+
|
|
2319
|
+
"""
|
|
2320
|
+
The reservation this log item belongs to
|
|
2321
|
+
"""
|
|
2322
|
+
reservation: Reservation!
|
|
2323
|
+
|
|
2324
|
+
"""
|
|
2325
|
+
"""
|
|
2326
|
+
message: String
|
|
2327
|
+
|
|
2328
|
+
"""
|
|
2329
|
+
"""
|
|
2330
|
+
level: ReservationLogLevel!
|
|
2331
|
+
}
|
|
2332
|
+
|
|
2333
|
+
"""
|
|
2334
|
+
An enumeration.
|
|
2335
|
+
"""
|
|
2336
|
+
enum ReservationLogLevel {
|
|
2337
|
+
"""
|
|
2338
|
+
CRITICAL Level
|
|
2339
|
+
"""
|
|
2340
|
+
CRITICAL
|
|
2341
|
+
|
|
2342
|
+
"""
|
|
2343
|
+
INFO Level
|
|
2344
|
+
"""
|
|
2345
|
+
INFO
|
|
2346
|
+
|
|
2347
|
+
"""
|
|
2348
|
+
DEBUG Level
|
|
2349
|
+
"""
|
|
2350
|
+
DEBUG
|
|
2351
|
+
|
|
2352
|
+
"""
|
|
2353
|
+
ERROR Level
|
|
2354
|
+
"""
|
|
2355
|
+
ERROR
|
|
2356
|
+
|
|
2357
|
+
"""
|
|
2358
|
+
WARN Level
|
|
2359
|
+
"""
|
|
2360
|
+
WARN
|
|
2361
|
+
|
|
2362
|
+
"""
|
|
2363
|
+
YIELD Level
|
|
2364
|
+
"""
|
|
2365
|
+
YIELD
|
|
2366
|
+
|
|
2367
|
+
"""
|
|
2368
|
+
Cancel Level
|
|
2369
|
+
"""
|
|
2370
|
+
CANCEL
|
|
2371
|
+
|
|
2372
|
+
"""
|
|
2373
|
+
YIELD Level
|
|
2374
|
+
"""
|
|
2375
|
+
RETURN
|
|
2376
|
+
|
|
2377
|
+
"""
|
|
2378
|
+
Done Level
|
|
2379
|
+
"""
|
|
2380
|
+
DONE
|
|
2381
|
+
|
|
2382
|
+
"""
|
|
2383
|
+
Event Level (only handled by plugins)
|
|
2384
|
+
"""
|
|
2385
|
+
EVENT
|
|
2386
|
+
}
|
|
2387
|
+
|
|
2388
|
+
type ProvisionParams {
|
|
2389
|
+
autoUnprovide: Boolean
|
|
2390
|
+
}
|
|
2391
|
+
|
|
2392
|
+
"""
|
|
2393
|
+
An enumeration.
|
|
2394
|
+
"""
|
|
2395
|
+
enum ProvisionAccess {
|
|
2396
|
+
"""
|
|
2397
|
+
This Topic is Only Accessible linkable for its creating User
|
|
2398
|
+
"""
|
|
2399
|
+
EXCLUSIVE
|
|
2400
|
+
|
|
2401
|
+
"""
|
|
2402
|
+
Everyone can link to this Topic
|
|
2403
|
+
"""
|
|
2404
|
+
EVERYONE
|
|
2405
|
+
}
|
|
2406
|
+
|
|
2407
|
+
"""
|
|
2408
|
+
An enumeration.
|
|
2409
|
+
"""
|
|
2410
|
+
enum ProvisionStatus {
|
|
2411
|
+
"""
|
|
2412
|
+
Pending (Request has been created and waits for its initial creation)
|
|
2413
|
+
"""
|
|
2414
|
+
PENDING
|
|
2415
|
+
|
|
2416
|
+
"""
|
|
2417
|
+
Bound (Provision was bound to an Agent)
|
|
2418
|
+
"""
|
|
2419
|
+
BOUND
|
|
2420
|
+
|
|
2421
|
+
"""
|
|
2422
|
+
Providing (Request has been send to its Agent and waits for Result
|
|
2423
|
+
"""
|
|
2424
|
+
PROVIDING
|
|
2425
|
+
|
|
2426
|
+
"""
|
|
2427
|
+
Active (Provision is currently active)
|
|
2428
|
+
"""
|
|
2429
|
+
ACTIVE
|
|
2430
|
+
|
|
2431
|
+
"""
|
|
2432
|
+
Inactive (Provision is currently not active)
|
|
2433
|
+
"""
|
|
2434
|
+
INACTIVE
|
|
2435
|
+
|
|
2436
|
+
"""
|
|
2437
|
+
Cancelling (Provisions is currently being cancelled)
|
|
2438
|
+
"""
|
|
2439
|
+
CANCELING
|
|
2440
|
+
|
|
2441
|
+
"""
|
|
2442
|
+
Lost (Subscribers to this Topic have lost their connection)
|
|
2443
|
+
"""
|
|
2444
|
+
LOST
|
|
2445
|
+
|
|
2446
|
+
"""
|
|
2447
|
+
Reconnecting (We are trying to Reconnect to this Topic)
|
|
2448
|
+
"""
|
|
2449
|
+
RECONNECTING
|
|
2450
|
+
|
|
2451
|
+
"""
|
|
2452
|
+
Denied (Provision was rejected for this User)
|
|
2453
|
+
"""
|
|
2454
|
+
DENIED
|
|
2455
|
+
|
|
2456
|
+
"""
|
|
2457
|
+
Error (Reservation was not able to be performed (See StatusMessage)
|
|
2458
|
+
"""
|
|
2459
|
+
ERROR
|
|
2460
|
+
|
|
2461
|
+
"""
|
|
2462
|
+
Critical (Provision resulted in an critical system error)
|
|
2463
|
+
"""
|
|
2464
|
+
CRITICAL
|
|
2465
|
+
|
|
2466
|
+
"""
|
|
2467
|
+
Ended (Provision was cancelled by the Platform and will no longer create Topics)
|
|
2468
|
+
"""
|
|
2469
|
+
ENDED
|
|
2470
|
+
|
|
2471
|
+
"""
|
|
2472
|
+
Cancelled (Provision was cancelled by the User and will no longer create Topics)
|
|
2473
|
+
"""
|
|
2474
|
+
CANCELLED
|
|
2475
|
+
}
|
|
2476
|
+
|
|
2477
|
+
type ProvisionLog {
|
|
2478
|
+
"""
|
|
2479
|
+
"""
|
|
2480
|
+
id: ID!
|
|
2481
|
+
|
|
2482
|
+
"""
|
|
2483
|
+
"""
|
|
2484
|
+
createdAt: DateTime!
|
|
2485
|
+
|
|
2486
|
+
"""
|
|
2487
|
+
The provision this log item belongs to
|
|
2488
|
+
"""
|
|
2489
|
+
provision: Provision!
|
|
2490
|
+
|
|
2491
|
+
"""
|
|
2492
|
+
"""
|
|
2493
|
+
message: String
|
|
2494
|
+
|
|
2495
|
+
"""
|
|
2496
|
+
"""
|
|
2497
|
+
level: ProvisionLogLevel!
|
|
2498
|
+
}
|
|
2499
|
+
|
|
2500
|
+
"""
|
|
2501
|
+
An enumeration.
|
|
2502
|
+
"""
|
|
2503
|
+
enum ProvisionLogLevel {
|
|
2504
|
+
"""
|
|
2505
|
+
CRITICAL Level
|
|
2506
|
+
"""
|
|
2507
|
+
CRITICAL
|
|
2508
|
+
|
|
2509
|
+
"""
|
|
2510
|
+
INFO Level
|
|
2511
|
+
"""
|
|
2512
|
+
INFO
|
|
2513
|
+
|
|
2514
|
+
"""
|
|
2515
|
+
DEBUG Level
|
|
2516
|
+
"""
|
|
2517
|
+
DEBUG
|
|
2518
|
+
|
|
2519
|
+
"""
|
|
2520
|
+
ERROR Level
|
|
2521
|
+
"""
|
|
2522
|
+
ERROR
|
|
2523
|
+
|
|
2524
|
+
"""
|
|
2525
|
+
WARN Level
|
|
2526
|
+
"""
|
|
2527
|
+
WARN
|
|
2528
|
+
|
|
2529
|
+
"""
|
|
2530
|
+
YIELD Level
|
|
2531
|
+
"""
|
|
2532
|
+
YIELD
|
|
2533
|
+
|
|
2534
|
+
"""
|
|
2535
|
+
Cancel Level
|
|
2536
|
+
"""
|
|
2537
|
+
CANCEL
|
|
2538
|
+
|
|
2539
|
+
"""
|
|
2540
|
+
YIELD Level
|
|
2541
|
+
"""
|
|
2542
|
+
RETURN
|
|
2543
|
+
|
|
2544
|
+
"""
|
|
2545
|
+
Done Level
|
|
2546
|
+
"""
|
|
2547
|
+
DONE
|
|
2548
|
+
|
|
2549
|
+
"""
|
|
2550
|
+
Event Level (only handled by plugins)
|
|
2551
|
+
"""
|
|
2552
|
+
EVENT
|
|
2553
|
+
}
|
|
2554
|
+
|
|
2555
|
+
"""
|
|
2556
|
+
An enumeration.
|
|
2557
|
+
"""
|
|
2558
|
+
enum AssignationStatusInput {
|
|
2559
|
+
"""
|
|
2560
|
+
Pending
|
|
2561
|
+
"""
|
|
2562
|
+
PENDING
|
|
2563
|
+
|
|
2564
|
+
"""
|
|
2565
|
+
Bound
|
|
2566
|
+
"""
|
|
2567
|
+
BOUND
|
|
2568
|
+
|
|
2569
|
+
"""
|
|
2570
|
+
Acknowledged
|
|
2571
|
+
"""
|
|
2572
|
+
ACKNOWLEDGED
|
|
2573
|
+
|
|
2574
|
+
"""
|
|
2575
|
+
Assignation Returned (Only for Functions)
|
|
2576
|
+
"""
|
|
2577
|
+
RETURNED
|
|
2578
|
+
|
|
2579
|
+
"""
|
|
2580
|
+
Denied (Assingment was rejected)
|
|
2581
|
+
"""
|
|
2582
|
+
DENIED
|
|
2583
|
+
|
|
2584
|
+
"""
|
|
2585
|
+
Was able to assign to a pod
|
|
2586
|
+
"""
|
|
2587
|
+
ASSIGNED
|
|
2588
|
+
|
|
2589
|
+
"""
|
|
2590
|
+
Progress (Assignment has current Progress)
|
|
2591
|
+
"""
|
|
2592
|
+
PROGRESS
|
|
2593
|
+
|
|
2594
|
+
"""
|
|
2595
|
+
Received (Assignment was received by an agent)
|
|
2596
|
+
"""
|
|
2597
|
+
RECEIVED
|
|
2598
|
+
|
|
2599
|
+
"""
|
|
2600
|
+
Error (Retrieable)
|
|
2601
|
+
"""
|
|
2602
|
+
ERROR
|
|
2603
|
+
|
|
2604
|
+
"""
|
|
2605
|
+
Critical Error (No Retries available)
|
|
2606
|
+
"""
|
|
2607
|
+
CRITICAL
|
|
2608
|
+
|
|
2609
|
+
"""
|
|
2610
|
+
Assinment is beeing cancelled
|
|
2611
|
+
"""
|
|
2612
|
+
CANCEL
|
|
2613
|
+
|
|
2614
|
+
"""
|
|
2615
|
+
Cancelling (Assingment is currently being cancelled)
|
|
2616
|
+
"""
|
|
2617
|
+
CANCELING
|
|
2618
|
+
|
|
2619
|
+
"""
|
|
2620
|
+
Assignment has been cancelled.
|
|
2621
|
+
"""
|
|
2622
|
+
CANCELLED
|
|
2623
|
+
|
|
2624
|
+
"""
|
|
2625
|
+
Assignment yielded a value (only for Generators)
|
|
2626
|
+
"""
|
|
2627
|
+
YIELD
|
|
2628
|
+
|
|
2629
|
+
"""
|
|
2630
|
+
Assignment has finished
|
|
2631
|
+
"""
|
|
2632
|
+
DONE
|
|
2633
|
+
}
|
|
2634
|
+
|
|
2635
|
+
"""
|
|
2636
|
+
An enumeration.
|
|
2637
|
+
"""
|
|
2638
|
+
enum ProvisionStatusInput {
|
|
2639
|
+
"""
|
|
2640
|
+
Pending (Request has been created and waits for its initial creation)
|
|
2641
|
+
"""
|
|
2642
|
+
PENDING
|
|
2643
|
+
|
|
2644
|
+
"""
|
|
2645
|
+
Bound (Provision was bound to an Agent)
|
|
2646
|
+
"""
|
|
2647
|
+
BOUND
|
|
2648
|
+
|
|
2649
|
+
"""
|
|
2650
|
+
Providing (Request has been send to its Agent and waits for Result
|
|
2651
|
+
"""
|
|
2652
|
+
PROVIDING
|
|
2653
|
+
|
|
2654
|
+
"""
|
|
2655
|
+
Active (Provision is currently active)
|
|
2656
|
+
"""
|
|
2657
|
+
ACTIVE
|
|
2658
|
+
|
|
2659
|
+
"""
|
|
2660
|
+
Inactive (Provision is currently not active)
|
|
2661
|
+
"""
|
|
2662
|
+
INACTIVE
|
|
2663
|
+
|
|
2664
|
+
"""
|
|
2665
|
+
Cancelling (Provisions is currently being cancelled)
|
|
2666
|
+
"""
|
|
2667
|
+
CANCELING
|
|
2668
|
+
|
|
2669
|
+
"""
|
|
2670
|
+
Lost (Subscribers to this Topic have lost their connection)
|
|
2671
|
+
"""
|
|
2672
|
+
DISCONNECTED
|
|
2673
|
+
|
|
2674
|
+
"""
|
|
2675
|
+
Reconnecting (We are trying to Reconnect to this Topic)
|
|
2676
|
+
"""
|
|
2677
|
+
RECONNECTING
|
|
2678
|
+
|
|
2679
|
+
"""
|
|
2680
|
+
Denied (Provision was rejected for this User)
|
|
2681
|
+
"""
|
|
2682
|
+
DENIED
|
|
2683
|
+
|
|
2684
|
+
"""
|
|
2685
|
+
Error (Reservation was not able to be performed (See StatusMessage)
|
|
2686
|
+
"""
|
|
2687
|
+
ERROR
|
|
2688
|
+
|
|
2689
|
+
"""
|
|
2690
|
+
Critical (Provision resulted in an critical system error)
|
|
2691
|
+
"""
|
|
2692
|
+
CRITICAL
|
|
2693
|
+
|
|
2694
|
+
"""
|
|
2695
|
+
Ended (Provision was cancelled by the Platform and will no longer create Topics)
|
|
2696
|
+
"""
|
|
2697
|
+
ENDED
|
|
2698
|
+
|
|
2699
|
+
"""
|
|
2700
|
+
Cancelled (Provision was cancelled by the User and will no longer create Topics)
|
|
2701
|
+
"""
|
|
2702
|
+
CANCELLED
|
|
2703
|
+
}
|
|
2704
|
+
|
|
2705
|
+
type TestResult {
|
|
2706
|
+
"""
|
|
2707
|
+
"""
|
|
2708
|
+
id: ID!
|
|
2709
|
+
|
|
2710
|
+
"""
|
|
2711
|
+
"""
|
|
2712
|
+
case: TestCase!
|
|
2713
|
+
|
|
2714
|
+
"""
|
|
2715
|
+
"""
|
|
2716
|
+
template: Template!
|
|
2717
|
+
|
|
2718
|
+
"""
|
|
2719
|
+
"""
|
|
2720
|
+
passed: Boolean!
|
|
2721
|
+
result: GenericScalar
|
|
2722
|
+
|
|
2723
|
+
"""
|
|
2724
|
+
"""
|
|
2725
|
+
createdAt: DateTime!
|
|
2726
|
+
}
|
|
2727
|
+
|
|
2728
|
+
type TestCase {
|
|
2729
|
+
"""
|
|
2730
|
+
"""
|
|
2731
|
+
id: ID!
|
|
2732
|
+
|
|
2733
|
+
"""
|
|
2734
|
+
The node this test belongs to
|
|
2735
|
+
"""
|
|
2736
|
+
node: Node!
|
|
2737
|
+
|
|
2738
|
+
"""
|
|
2739
|
+
"""
|
|
2740
|
+
key: String
|
|
2741
|
+
|
|
2742
|
+
"""
|
|
2743
|
+
"""
|
|
2744
|
+
name: String
|
|
2745
|
+
|
|
2746
|
+
"""
|
|
2747
|
+
"""
|
|
2748
|
+
description: String
|
|
2749
|
+
|
|
2750
|
+
"""
|
|
2751
|
+
"""
|
|
2752
|
+
isBenchmark: Boolean!
|
|
2753
|
+
|
|
2754
|
+
"""
|
|
2755
|
+
"""
|
|
2756
|
+
createdAt: DateTime!
|
|
2757
|
+
|
|
2758
|
+
"""
|
|
2759
|
+
"""
|
|
2760
|
+
results: [TestResult!]!
|
|
2761
|
+
}
|
|
2762
|
+
|
|
2763
|
+
"""
|
|
2764
|
+
An enumeration.
|
|
2765
|
+
"""
|
|
2766
|
+
enum RepositoryType {
|
|
2767
|
+
"""
|
|
2768
|
+
Repository that is hosted by an App
|
|
2769
|
+
"""
|
|
2770
|
+
APP
|
|
2771
|
+
|
|
2772
|
+
"""
|
|
2773
|
+
Repository mirrors online Repository
|
|
2774
|
+
"""
|
|
2775
|
+
MIRROR
|
|
2776
|
+
}
|
|
2777
|
+
|
|
2778
|
+
"""
|
|
2779
|
+
An enumeration.
|
|
2780
|
+
"""
|
|
2781
|
+
enum LokClientGrantType {
|
|
2782
|
+
"""
|
|
2783
|
+
Backend (Client Credentials)
|
|
2784
|
+
"""
|
|
2785
|
+
CLIENT_CREDENTIALS
|
|
2786
|
+
|
|
2787
|
+
"""
|
|
2788
|
+
Implicit Grant
|
|
2789
|
+
"""
|
|
2790
|
+
IMPLICIT
|
|
2791
|
+
|
|
2792
|
+
"""
|
|
2793
|
+
Authorization Code
|
|
2794
|
+
"""
|
|
2795
|
+
AUTHORIZATION_CODE
|
|
2796
|
+
|
|
2797
|
+
"""
|
|
2798
|
+
Password
|
|
2799
|
+
"""
|
|
2800
|
+
PASSWORD
|
|
2801
|
+
|
|
2802
|
+
"""
|
|
2803
|
+
Django Session
|
|
2804
|
+
"""
|
|
2805
|
+
SESSION
|
|
2806
|
+
}
|
|
2807
|
+
|
|
2808
|
+
"""
|
|
2809
|
+
A descendent of a node in the comment tree
|
|
2810
|
+
"""
|
|
2811
|
+
interface Descendent {
|
|
2812
|
+
typename: String
|
|
2813
|
+
}
|
|
2814
|
+
|
|
2815
|
+
"""
|
|
2816
|
+
An enumeration.
|
|
2817
|
+
"""
|
|
2818
|
+
enum AgentStatusInput {
|
|
2819
|
+
"""
|
|
2820
|
+
Active
|
|
2821
|
+
"""
|
|
2822
|
+
ACTIVE
|
|
2823
|
+
|
|
2824
|
+
"""
|
|
2825
|
+
Just kicked
|
|
2826
|
+
"""
|
|
2827
|
+
KICKED
|
|
2828
|
+
|
|
2829
|
+
"""
|
|
2830
|
+
Disconnected
|
|
2831
|
+
"""
|
|
2832
|
+
DISCONNECTED
|
|
2833
|
+
|
|
2834
|
+
"""
|
|
2835
|
+
Complete Vanilla Scenario after a forced restart of
|
|
2836
|
+
"""
|
|
2837
|
+
VANILLA
|
|
2838
|
+
}
|
|
2839
|
+
|
|
2840
|
+
"""
|
|
2841
|
+
A q-string is a universal identifier for a node on the
|
|
2842
|
+
arkitekt_next platform, its a hash of the node's name and the
|
|
2843
|
+
and its functional signature.
|
|
2844
|
+
"""
|
|
2845
|
+
scalar QString
|
|
2846
|
+
|
|
2847
|
+
input PortDemandInput {
|
|
2848
|
+
at: Int
|
|
2849
|
+
key: String
|
|
2850
|
+
kind: PortKindInput
|
|
2851
|
+
identifier: String
|
|
2852
|
+
nullable: Boolean
|
|
2853
|
+
variants: [PortDemandInput]
|
|
2854
|
+
child: PortDemandInput
|
|
2855
|
+
}
|
|
2856
|
+
|
|
2857
|
+
enum PortKindInput {
|
|
2858
|
+
INT
|
|
2859
|
+
STRING
|
|
2860
|
+
STRUCTURE
|
|
2861
|
+
LIST
|
|
2862
|
+
BOOL
|
|
2863
|
+
DICT
|
|
2864
|
+
FLOAT
|
|
2865
|
+
UNION
|
|
2866
|
+
DATE
|
|
2867
|
+
}
|
|
2868
|
+
|
|
2869
|
+
"""
|
|
2870
|
+
An enumeration.
|
|
2871
|
+
"""
|
|
2872
|
+
enum NodeKindInput {
|
|
2873
|
+
"""
|
|
2874
|
+
Generator
|
|
2875
|
+
"""
|
|
2876
|
+
GENERATOR
|
|
2877
|
+
|
|
2878
|
+
"""
|
|
2879
|
+
Function
|
|
2880
|
+
"""
|
|
2881
|
+
FUNCTION
|
|
2882
|
+
}
|
|
2883
|
+
|
|
2884
|
+
"""
|
|
2885
|
+
An enumeration.
|
|
2886
|
+
"""
|
|
2887
|
+
enum ReservationStatusInput {
|
|
2888
|
+
"""
|
|
2889
|
+
Routing (Reservation has been requested but no Topic found yet)
|
|
2890
|
+
"""
|
|
2891
|
+
ROUTING
|
|
2892
|
+
|
|
2893
|
+
"""
|
|
2894
|
+
SHould signal that this reservation is non viable (has less linked provisions than minimalInstances)
|
|
2895
|
+
"""
|
|
2896
|
+
NON_VIABLE
|
|
2897
|
+
|
|
2898
|
+
"""
|
|
2899
|
+
Providing (Reservation required the provision of a new worker)
|
|
2900
|
+
"""
|
|
2901
|
+
PROVIDING
|
|
2902
|
+
|
|
2903
|
+
"""
|
|
2904
|
+
Waiting (We are waiting for any assignable Topic to come online)
|
|
2905
|
+
"""
|
|
2906
|
+
WAITING
|
|
2907
|
+
|
|
2908
|
+
"""
|
|
2909
|
+
Rerouting (State of provisions this reservation connects to have changed and require Retouring)
|
|
2910
|
+
"""
|
|
2911
|
+
REROUTING
|
|
2912
|
+
|
|
2913
|
+
"""
|
|
2914
|
+
Disconnect (State of provisions this reservation connects to have changed and require Retouring)
|
|
2915
|
+
"""
|
|
2916
|
+
DISCONNECTED
|
|
2917
|
+
|
|
2918
|
+
"""
|
|
2919
|
+
Disconnect (State of provisions this reservation connects to have changed and require Retouring)
|
|
2920
|
+
"""
|
|
2921
|
+
DISCONNECT
|
|
2922
|
+
|
|
2923
|
+
"""
|
|
2924
|
+
Cancelling (Reervation is currently being cancelled)
|
|
2925
|
+
"""
|
|
2926
|
+
CANCELING
|
|
2927
|
+
|
|
2928
|
+
"""
|
|
2929
|
+
Active (Reservation is active and accepts assignments
|
|
2930
|
+
"""
|
|
2931
|
+
ACTIVE
|
|
2932
|
+
|
|
2933
|
+
"""
|
|
2934
|
+
Error (Reservation was not able to be performed (See StatusMessage)
|
|
2935
|
+
"""
|
|
2936
|
+
ERROR
|
|
2937
|
+
|
|
2938
|
+
"""
|
|
2939
|
+
Ended (Reservation was ended by the the Platform and is no longer active)
|
|
2940
|
+
"""
|
|
2941
|
+
ENDED
|
|
2942
|
+
|
|
2943
|
+
"""
|
|
2944
|
+
Cancelled (Reservation was cancelled by user and is no longer active)
|
|
2945
|
+
"""
|
|
2946
|
+
CANCELLED
|
|
2947
|
+
|
|
2948
|
+
"""
|
|
2949
|
+
Critical (Reservation failed with an Critical Error)
|
|
2950
|
+
"""
|
|
2951
|
+
CRITICAL
|
|
2952
|
+
}
|
|
2953
|
+
|
|
2954
|
+
input TemplateParamInput {
|
|
2955
|
+
key: String!
|
|
2956
|
+
value: GenericScalar
|
|
2957
|
+
}
|
|
2958
|
+
|
|
2959
|
+
type Structure {
|
|
2960
|
+
"""
|
|
2961
|
+
"""
|
|
2962
|
+
id: ID!
|
|
2963
|
+
extenders: GenericScalar
|
|
2964
|
+
|
|
2965
|
+
"""
|
|
2966
|
+
A unique identifier for this Model accross the Platform
|
|
2967
|
+
"""
|
|
2968
|
+
identifier: String!
|
|
2969
|
+
repository: Repository
|
|
2970
|
+
}
|
|
2971
|
+
|
|
2972
|
+
"""
|
|
2973
|
+
Sharable Models are models that can be shared amongst users and groups. They representent the models of the DB
|
|
2974
|
+
"""
|
|
2975
|
+
enum SharableModels {
|
|
2976
|
+
LOK_LOKUSER
|
|
2977
|
+
LOK_LOKAPP
|
|
2978
|
+
LOK_LOKCLIENT
|
|
2979
|
+
FACADE_REPOSITORY
|
|
2980
|
+
FACADE_REGISTRY
|
|
2981
|
+
FACADE_PROTOCOL
|
|
2982
|
+
FACADE_STRUCTURE
|
|
2983
|
+
FACADE_MIRRORREPOSITORY
|
|
2984
|
+
FACADE_APPREPOSITORY
|
|
2985
|
+
FACADE_AGENT
|
|
2986
|
+
FACADE_COLLECTION
|
|
2987
|
+
FACADE_WAITER
|
|
2988
|
+
FACADE_NODE
|
|
2989
|
+
FACADE_TEMPLATE
|
|
2990
|
+
FACADE_PROVISIONLOG
|
|
2991
|
+
FACADE_PROVISION
|
|
2992
|
+
FACADE_RESERVATIONLOG
|
|
2993
|
+
FACADE_RESERVATION
|
|
2994
|
+
FACADE_ASSIGNATION
|
|
2995
|
+
FACADE_ASSIGNATIONLOG
|
|
2996
|
+
FACADE_TESTCASE
|
|
2997
|
+
FACADE_TESTRESULT
|
|
2998
|
+
}
|
|
2999
|
+
|
|
3000
|
+
type PermissionsOfReturn {
|
|
3001
|
+
available: [Permission]
|
|
3002
|
+
userAssignments: [UserAssignment]
|
|
3003
|
+
groupAssignments: [GroupAssignment]
|
|
3004
|
+
}
|
|
3005
|
+
|
|
3006
|
+
type UserAssignment {
|
|
3007
|
+
permissions: [String]!
|
|
3008
|
+
|
|
3009
|
+
"""
|
|
3010
|
+
A query that returns an image path
|
|
3011
|
+
"""
|
|
3012
|
+
user: User!
|
|
3013
|
+
}
|
|
3014
|
+
|
|
3015
|
+
type GroupAssignment {
|
|
3016
|
+
permissions: [String]!
|
|
3017
|
+
|
|
3018
|
+
"""
|
|
3019
|
+
A query that returns an image path
|
|
3020
|
+
"""
|
|
3021
|
+
group: Group!
|
|
3022
|
+
}
|
|
3023
|
+
|
|
3024
|
+
"""
|
|
3025
|
+
The root Mutation
|
|
3026
|
+
"""
|
|
3027
|
+
type Mutation {
|
|
3028
|
+
"""
|
|
3029
|
+
Create an Comment
|
|
3030
|
+
|
|
3031
|
+
This mutation creates a comment. It takes a commentable_id and a commentable_type.
|
|
3032
|
+
If this is the first comment on the commentable, it will create a new comment thread.
|
|
3033
|
+
If there is already a comment thread, it will add the comment to the thread (by setting
|
|
3034
|
+
it's parent to the last parent comment in the thread).
|
|
3035
|
+
|
|
3036
|
+
CreateComment takes a list of Descendents, which are the comment tree. The Descendents
|
|
3037
|
+
are a recursive structure, where each Descendent can have a list of Descendents as children.
|
|
3038
|
+
The Descendents are either a Leaf, which is a text node, or a MentionDescendent, which is a
|
|
3039
|
+
reference to another user on the platform.
|
|
3040
|
+
|
|
3041
|
+
Please convert your comment tree to a list of Descendents before sending it to the server.
|
|
3042
|
+
TODO: Add a converter from a comment tree to a list of Descendents.
|
|
3043
|
+
|
|
3044
|
+
|
|
3045
|
+
(only signed in users)
|
|
3046
|
+
"""
|
|
3047
|
+
createComment(
|
|
3048
|
+
"""
|
|
3049
|
+
The comment tree
|
|
3050
|
+
"""
|
|
3051
|
+
descendents: [DescendendInput]!
|
|
3052
|
+
|
|
3053
|
+
"""
|
|
3054
|
+
The Representationss this sROI belongs to
|
|
3055
|
+
"""
|
|
3056
|
+
object: ID!
|
|
3057
|
+
|
|
3058
|
+
"""
|
|
3059
|
+
The parent comment
|
|
3060
|
+
"""
|
|
3061
|
+
parent: ID
|
|
3062
|
+
|
|
3063
|
+
"""
|
|
3064
|
+
The type model you want to comment on
|
|
3065
|
+
"""
|
|
3066
|
+
type: CommentableModels!
|
|
3067
|
+
): Comment
|
|
3068
|
+
|
|
3069
|
+
"""
|
|
3070
|
+
Reply to an Comment
|
|
3071
|
+
|
|
3072
|
+
This mutation creates a comment. It takes a commentable_id and a commentable_type.
|
|
3073
|
+
If this is the first comment on the commentable, it will create a new comment thread.
|
|
3074
|
+
If there is already a comment thread, it will add the comment to the thread (by setting
|
|
3075
|
+
it's parent to the last parent comment in the thread).
|
|
3076
|
+
|
|
3077
|
+
CreateComment takes a list of Descendents, which are the comment tree. The Descendents
|
|
3078
|
+
are a recursive structure, where each Descendent can have a list of Descendents as children.
|
|
3079
|
+
The Descendents are either a Leaf, which is a text node, or a MentionDescendent, which is a
|
|
3080
|
+
reference to another user on the platform.
|
|
3081
|
+
|
|
3082
|
+
Please convert your comment tree to a list of Descendents before sending it to the server.
|
|
3083
|
+
TODO: Add a converter from a comment tree to a list of Descendents.
|
|
3084
|
+
|
|
3085
|
+
|
|
3086
|
+
(only signed in users)
|
|
3087
|
+
"""
|
|
3088
|
+
replyTo(
|
|
3089
|
+
"""
|
|
3090
|
+
The comment tree
|
|
3091
|
+
"""
|
|
3092
|
+
descendents: [DescendendInput]!
|
|
3093
|
+
|
|
3094
|
+
"""
|
|
3095
|
+
The parent comment
|
|
3096
|
+
"""
|
|
3097
|
+
parent: ID!
|
|
3098
|
+
): Comment
|
|
3099
|
+
|
|
3100
|
+
"""
|
|
3101
|
+
Create an Comment
|
|
3102
|
+
|
|
3103
|
+
This mutation resolves a comment. By resolving a comment, it will be marked as resolved,
|
|
3104
|
+
and the user that resolved it will be set as the resolver.
|
|
3105
|
+
|
|
3106
|
+
(only signed in users)
|
|
3107
|
+
"""
|
|
3108
|
+
resolveComment(
|
|
3109
|
+
"""
|
|
3110
|
+
The comments id
|
|
3111
|
+
"""
|
|
3112
|
+
id: ID!
|
|
3113
|
+
|
|
3114
|
+
"""
|
|
3115
|
+
Should we imitate the resolving by another user (requires imitate permission)
|
|
3116
|
+
"""
|
|
3117
|
+
imitate: ID
|
|
3118
|
+
): Comment
|
|
3119
|
+
|
|
3120
|
+
"""
|
|
3121
|
+
Create an experiment (only signed in users)
|
|
3122
|
+
"""
|
|
3123
|
+
deleteNode(
|
|
3124
|
+
"""
|
|
3125
|
+
A cleartext description what this representation represents as data
|
|
3126
|
+
"""
|
|
3127
|
+
id: ID!
|
|
3128
|
+
): DeleteNodeReturn
|
|
3129
|
+
purgeNodes(app: String): PurgeNodesReturn
|
|
3130
|
+
|
|
3131
|
+
"""
|
|
3132
|
+
Create Repostiory
|
|
3133
|
+
"""
|
|
3134
|
+
createMirror(
|
|
3135
|
+
"""
|
|
3136
|
+
The name of this template
|
|
3137
|
+
"""
|
|
3138
|
+
name: String!
|
|
3139
|
+
|
|
3140
|
+
"""
|
|
3141
|
+
A Url for the Mirror
|
|
3142
|
+
"""
|
|
3143
|
+
url: String!
|
|
3144
|
+
): CreateMirrorReturn
|
|
3145
|
+
|
|
3146
|
+
"""
|
|
3147
|
+
Create an experiment (only signed in users)
|
|
3148
|
+
"""
|
|
3149
|
+
deleterepo(
|
|
3150
|
+
"""
|
|
3151
|
+
The Id of the Mirror
|
|
3152
|
+
"""
|
|
3153
|
+
id: ID!
|
|
3154
|
+
): DeleteRepoReturn
|
|
3155
|
+
|
|
3156
|
+
"""
|
|
3157
|
+
Create an experiment (only signed in users)
|
|
3158
|
+
"""
|
|
3159
|
+
updateMirror(
|
|
3160
|
+
"""
|
|
3161
|
+
A cleartext description what this representation represents as data
|
|
3162
|
+
"""
|
|
3163
|
+
id: ID!
|
|
3164
|
+
): UpdateMirrorReturn
|
|
3165
|
+
createTemplate(
|
|
3166
|
+
definition: DefinitionInput!
|
|
3167
|
+
|
|
3168
|
+
"""
|
|
3169
|
+
Desired Extensions (e.g reaktion)
|
|
3170
|
+
"""
|
|
3171
|
+
extensions: [String]
|
|
3172
|
+
|
|
3173
|
+
"""
|
|
3174
|
+
User to imitate
|
|
3175
|
+
"""
|
|
3176
|
+
imitate: ID
|
|
3177
|
+
|
|
3178
|
+
"""
|
|
3179
|
+
The instance id
|
|
3180
|
+
"""
|
|
3181
|
+
instanceId: ID!
|
|
3182
|
+
interface: String!
|
|
3183
|
+
|
|
3184
|
+
"""
|
|
3185
|
+
Some additional Params for your offering
|
|
3186
|
+
"""
|
|
3187
|
+
params: GenericScalar
|
|
3188
|
+
|
|
3189
|
+
"""
|
|
3190
|
+
Some additional Params for your offering
|
|
3191
|
+
"""
|
|
3192
|
+
policy: GenericScalar
|
|
3193
|
+
): Template
|
|
3194
|
+
ack(assignation: ID!): Assignation
|
|
3195
|
+
assign(
|
|
3196
|
+
"""
|
|
3197
|
+
Additional Params
|
|
3198
|
+
"""
|
|
3199
|
+
args: [AnyInput]
|
|
3200
|
+
|
|
3201
|
+
"""
|
|
3202
|
+
Should we allow cached results (only applicable if node was registered as pure)
|
|
3203
|
+
"""
|
|
3204
|
+
cached: Boolean
|
|
3205
|
+
|
|
3206
|
+
"""
|
|
3207
|
+
Should we log intermediate resulst? (if also persist is true these will be persisted to the log system)
|
|
3208
|
+
"""
|
|
3209
|
+
log: Boolean
|
|
3210
|
+
|
|
3211
|
+
"""
|
|
3212
|
+
If this task inherits from another task
|
|
3213
|
+
"""
|
|
3214
|
+
parent: ID
|
|
3215
|
+
|
|
3216
|
+
"""
|
|
3217
|
+
A reference
|
|
3218
|
+
"""
|
|
3219
|
+
reference: String
|
|
3220
|
+
reservation: ID!
|
|
3221
|
+
): Assignation
|
|
3222
|
+
|
|
3223
|
+
"""
|
|
3224
|
+
Scan allows you to add Datapoints to your Arnheim Schema, this is only available to Admin users
|
|
3225
|
+
"""
|
|
3226
|
+
provide(
|
|
3227
|
+
"""
|
|
3228
|
+
Additional Params
|
|
3229
|
+
"""
|
|
3230
|
+
params: GenericScalar
|
|
3231
|
+
template: ID!
|
|
3232
|
+
): Provision
|
|
3233
|
+
reserve(
|
|
3234
|
+
allowAutoRequest: Boolean
|
|
3235
|
+
|
|
3236
|
+
"""
|
|
3237
|
+
bindings
|
|
3238
|
+
"""
|
|
3239
|
+
binds: ReserveBindsInput
|
|
3240
|
+
hash: String
|
|
3241
|
+
imitate: ID
|
|
3242
|
+
instanceId: ID!
|
|
3243
|
+
node: ID
|
|
3244
|
+
|
|
3245
|
+
"""
|
|
3246
|
+
Additional Params
|
|
3247
|
+
"""
|
|
3248
|
+
params: ReserveParamsInput
|
|
3249
|
+
|
|
3250
|
+
"""
|
|
3251
|
+
Additional Params
|
|
3252
|
+
"""
|
|
3253
|
+
persist: Boolean = true
|
|
3254
|
+
provision: ID
|
|
3255
|
+
reference: String
|
|
3256
|
+
template: ID
|
|
3257
|
+
title: String
|
|
3258
|
+
): Reservation
|
|
3259
|
+
slate(
|
|
3260
|
+
"""
|
|
3261
|
+
The identifier you want to slate
|
|
3262
|
+
"""
|
|
3263
|
+
identifier: String!
|
|
3264
|
+
): [ID]
|
|
3265
|
+
unassign(
|
|
3266
|
+
"""
|
|
3267
|
+
The reference of the Assignation you want to ruin
|
|
3268
|
+
"""
|
|
3269
|
+
assignation: ID
|
|
3270
|
+
|
|
3271
|
+
"""
|
|
3272
|
+
An identifier you want this unassignation to go buy
|
|
3273
|
+
"""
|
|
3274
|
+
reference: String
|
|
3275
|
+
): Assignation
|
|
3276
|
+
unprovide(
|
|
3277
|
+
"""
|
|
3278
|
+
The reference of the Provision you want to ruin
|
|
3279
|
+
"""
|
|
3280
|
+
id: ID
|
|
3281
|
+
): UnprovideReturn
|
|
3282
|
+
unreserve(
|
|
3283
|
+
"""
|
|
3284
|
+
The reference of the Reservation you want to ruin
|
|
3285
|
+
"""
|
|
3286
|
+
id: ID!
|
|
3287
|
+
): UnreserveResult
|
|
3288
|
+
link(provision: ID!, reservation: ID!): Provision
|
|
3289
|
+
unlink(provision: ID!, reservation: ID!, safe: Boolean): Provision
|
|
3290
|
+
tell(message: MessageInput!, reservation: ID!): Tell
|
|
3291
|
+
|
|
3292
|
+
"""
|
|
3293
|
+
Create Repostiory
|
|
3294
|
+
"""
|
|
3295
|
+
resetRepository: ResetRepositoryReturn
|
|
3296
|
+
|
|
3297
|
+
"""
|
|
3298
|
+
Create Repostiory
|
|
3299
|
+
"""
|
|
3300
|
+
resetAgents: ResetAgentsReturn
|
|
3301
|
+
|
|
3302
|
+
"""
|
|
3303
|
+
Create Repostiory
|
|
3304
|
+
"""
|
|
3305
|
+
resetAssignations(
|
|
3306
|
+
"""
|
|
3307
|
+
The status you want to get rid of
|
|
3308
|
+
"""
|
|
3309
|
+
exclude: [AssignationStatusInput]
|
|
3310
|
+
): ResetAssignationsReturn
|
|
3311
|
+
|
|
3312
|
+
"""
|
|
3313
|
+
Create Repostiory
|
|
3314
|
+
"""
|
|
3315
|
+
resetNodes(
|
|
3316
|
+
"""
|
|
3317
|
+
Respositroys you want to exclude
|
|
3318
|
+
"""
|
|
3319
|
+
exclude: [ID]
|
|
3320
|
+
): ResetNodesReturn
|
|
3321
|
+
|
|
3322
|
+
"""
|
|
3323
|
+
Create Repostiory
|
|
3324
|
+
"""
|
|
3325
|
+
resetProvisions(
|
|
3326
|
+
"""
|
|
3327
|
+
The status you want to get rid of
|
|
3328
|
+
"""
|
|
3329
|
+
exclude: [ProvisionStatusInput]
|
|
3330
|
+
): ResetProvisionsReturn
|
|
3331
|
+
|
|
3332
|
+
"""
|
|
3333
|
+
Create Repostiory
|
|
3334
|
+
"""
|
|
3335
|
+
resetReservations(
|
|
3336
|
+
"""
|
|
3337
|
+
The status you want to get rid of
|
|
3338
|
+
"""
|
|
3339
|
+
exclude: [ReservationStatusInput]
|
|
3340
|
+
): ResetReservationsReturn
|
|
3341
|
+
|
|
3342
|
+
"""
|
|
3343
|
+
Kick an agent (only signed in users)
|
|
3344
|
+
"""
|
|
3345
|
+
kickAgent(
|
|
3346
|
+
"""
|
|
3347
|
+
The id of the agent to delete
|
|
3348
|
+
"""
|
|
3349
|
+
id: ID!
|
|
3350
|
+
): Agent
|
|
3351
|
+
|
|
3352
|
+
"""
|
|
3353
|
+
Kick an agent (only signed in users)
|
|
3354
|
+
"""
|
|
3355
|
+
bounceAgent(
|
|
3356
|
+
"""
|
|
3357
|
+
The id of the agent to delete
|
|
3358
|
+
"""
|
|
3359
|
+
id: ID!
|
|
3360
|
+
): Agent
|
|
3361
|
+
|
|
3362
|
+
"""
|
|
3363
|
+
Kick an agent (only signed in users)
|
|
3364
|
+
"""
|
|
3365
|
+
blockAgent(
|
|
3366
|
+
"""
|
|
3367
|
+
The id of the agent to delete
|
|
3368
|
+
"""
|
|
3369
|
+
id: ID!
|
|
3370
|
+
): Agent
|
|
3371
|
+
|
|
3372
|
+
"""
|
|
3373
|
+
Deletes an agent (only signed in users)
|
|
3374
|
+
"""
|
|
3375
|
+
deleteAgent(
|
|
3376
|
+
"""
|
|
3377
|
+
The id of the agent to delete
|
|
3378
|
+
"""
|
|
3379
|
+
id: ID!
|
|
3380
|
+
): DeleteAgentReturn
|
|
3381
|
+
|
|
3382
|
+
"""
|
|
3383
|
+
Create Repostiory
|
|
3384
|
+
"""
|
|
3385
|
+
createTestCase(
|
|
3386
|
+
"""
|
|
3387
|
+
The description of this testcase
|
|
3388
|
+
"""
|
|
3389
|
+
description: String
|
|
3390
|
+
|
|
3391
|
+
"""
|
|
3392
|
+
Is this a benchmark?
|
|
3393
|
+
"""
|
|
3394
|
+
isBenchmark: Boolean
|
|
3395
|
+
|
|
3396
|
+
"""
|
|
3397
|
+
The name of this template
|
|
3398
|
+
"""
|
|
3399
|
+
key: String!
|
|
3400
|
+
|
|
3401
|
+
"""
|
|
3402
|
+
The name of this testcase
|
|
3403
|
+
"""
|
|
3404
|
+
name: String!
|
|
3405
|
+
|
|
3406
|
+
"""
|
|
3407
|
+
The name of this template
|
|
3408
|
+
"""
|
|
3409
|
+
node: ID!
|
|
3410
|
+
): TestCase
|
|
3411
|
+
|
|
3412
|
+
"""
|
|
3413
|
+
Delete TestCase
|
|
3414
|
+
|
|
3415
|
+
This mutation deletes an TestCase and returns the deleted TestCase.
|
|
3416
|
+
"""
|
|
3417
|
+
deleteTestCase(
|
|
3418
|
+
"""
|
|
3419
|
+
The ID of the testcase to delete
|
|
3420
|
+
"""
|
|
3421
|
+
id: ID!
|
|
3422
|
+
): DeleteTestCaseResult
|
|
3423
|
+
|
|
3424
|
+
"""
|
|
3425
|
+
Create Test Result
|
|
3426
|
+
"""
|
|
3427
|
+
createTestResult(
|
|
3428
|
+
"""
|
|
3429
|
+
The associated case
|
|
3430
|
+
"""
|
|
3431
|
+
case: ID!
|
|
3432
|
+
|
|
3433
|
+
"""
|
|
3434
|
+
Did the test-case pass
|
|
3435
|
+
"""
|
|
3436
|
+
passed: Boolean!
|
|
3437
|
+
|
|
3438
|
+
"""
|
|
3439
|
+
The result of the test
|
|
3440
|
+
"""
|
|
3441
|
+
result: String
|
|
3442
|
+
|
|
3443
|
+
"""
|
|
3444
|
+
The associated template
|
|
3445
|
+
"""
|
|
3446
|
+
template: ID!
|
|
3447
|
+
): TestResult
|
|
3448
|
+
|
|
3449
|
+
"""
|
|
3450
|
+
Creates a Sample
|
|
3451
|
+
"""
|
|
3452
|
+
changePermissions(
|
|
3453
|
+
groupAssignments: [GroupAssignmentInput]
|
|
3454
|
+
|
|
3455
|
+
"""
|
|
3456
|
+
The Representationss this sROI belongs to
|
|
3457
|
+
"""
|
|
3458
|
+
object: ID!
|
|
3459
|
+
type: SharableModels!
|
|
3460
|
+
userAssignments: [UserAssignmentInput]
|
|
3461
|
+
): ChangePermissionsResult
|
|
3462
|
+
}
|
|
3463
|
+
|
|
3464
|
+
input DescendendInput {
|
|
3465
|
+
children: [DescendendInput]
|
|
3466
|
+
|
|
3467
|
+
"""
|
|
3468
|
+
The type of the descendent
|
|
3469
|
+
"""
|
|
3470
|
+
typename: String
|
|
3471
|
+
|
|
3472
|
+
"""
|
|
3473
|
+
The user that is mentioned
|
|
3474
|
+
"""
|
|
3475
|
+
user: String
|
|
3476
|
+
|
|
3477
|
+
"""
|
|
3478
|
+
Is this a bold leaf?
|
|
3479
|
+
"""
|
|
3480
|
+
bold: Boolean
|
|
3481
|
+
|
|
3482
|
+
"""
|
|
3483
|
+
Is this a italic leaf?
|
|
3484
|
+
"""
|
|
3485
|
+
italic: Boolean
|
|
3486
|
+
|
|
3487
|
+
"""
|
|
3488
|
+
Is this a code leaf?
|
|
3489
|
+
"""
|
|
3490
|
+
code: Boolean
|
|
3491
|
+
|
|
3492
|
+
"""
|
|
3493
|
+
The text of the leaf
|
|
3494
|
+
"""
|
|
3495
|
+
text: String
|
|
3496
|
+
}
|
|
3497
|
+
|
|
3498
|
+
type DeleteNodeReturn {
|
|
3499
|
+
id: String
|
|
3500
|
+
}
|
|
3501
|
+
|
|
3502
|
+
type PurgeNodesReturn {
|
|
3503
|
+
ids: [String]
|
|
3504
|
+
}
|
|
3505
|
+
|
|
3506
|
+
type CreateMirrorReturn {
|
|
3507
|
+
created: Boolean
|
|
3508
|
+
repo: MirrorRepository
|
|
3509
|
+
}
|
|
3510
|
+
|
|
3511
|
+
type MirrorRepository implements Repository {
|
|
3512
|
+
"""
|
|
3513
|
+
Id of the Repository
|
|
3514
|
+
"""
|
|
3515
|
+
id: ID!
|
|
3516
|
+
|
|
3517
|
+
"""
|
|
3518
|
+
"""
|
|
3519
|
+
installedAt: DateTime!
|
|
3520
|
+
|
|
3521
|
+
"""
|
|
3522
|
+
"""
|
|
3523
|
+
type: RepositoryType!
|
|
3524
|
+
|
|
3525
|
+
"""
|
|
3526
|
+
The Name of the Repository
|
|
3527
|
+
"""
|
|
3528
|
+
name: String
|
|
3529
|
+
|
|
3530
|
+
"""
|
|
3531
|
+
A world-unique identifier
|
|
3532
|
+
"""
|
|
3533
|
+
unique: String!
|
|
3534
|
+
|
|
3535
|
+
"""
|
|
3536
|
+
"""
|
|
3537
|
+
url: String
|
|
3538
|
+
|
|
3539
|
+
"""
|
|
3540
|
+
"""
|
|
3541
|
+
updatedAt: DateTime!
|
|
3542
|
+
nodes(
|
|
3543
|
+
"""
|
|
3544
|
+
Filter by values
|
|
3545
|
+
"""
|
|
3546
|
+
ids: [ID]
|
|
3547
|
+
package: String
|
|
3548
|
+
): [Node]
|
|
3549
|
+
}
|
|
3550
|
+
|
|
3551
|
+
type DeleteRepoReturn {
|
|
3552
|
+
id: String
|
|
3553
|
+
}
|
|
3554
|
+
|
|
3555
|
+
type UpdateMirrorReturn {
|
|
3556
|
+
id: String
|
|
3557
|
+
}
|
|
3558
|
+
|
|
3559
|
+
"""
|
|
3560
|
+
A definition for a template
|
|
3561
|
+
"""
|
|
3562
|
+
input DefinitionInput {
|
|
3563
|
+
"""
|
|
3564
|
+
A description for the Node
|
|
3565
|
+
"""
|
|
3566
|
+
description: String
|
|
3567
|
+
collections: [ID]
|
|
3568
|
+
|
|
3569
|
+
"""
|
|
3570
|
+
The name of this template
|
|
3571
|
+
"""
|
|
3572
|
+
name: String!
|
|
3573
|
+
portGroups: [PortGroupInput]!
|
|
3574
|
+
|
|
3575
|
+
"""
|
|
3576
|
+
The Args
|
|
3577
|
+
"""
|
|
3578
|
+
args: [PortInput]!
|
|
3579
|
+
|
|
3580
|
+
"""
|
|
3581
|
+
The Returns
|
|
3582
|
+
"""
|
|
3583
|
+
returns: [PortInput]!
|
|
3584
|
+
|
|
3585
|
+
"""
|
|
3586
|
+
The Interfaces this node provides makes sense of the metadata
|
|
3587
|
+
"""
|
|
3588
|
+
interfaces: [String]!
|
|
3589
|
+
|
|
3590
|
+
"""
|
|
3591
|
+
The variety
|
|
3592
|
+
"""
|
|
3593
|
+
kind: NodeKindInput!
|
|
3594
|
+
|
|
3595
|
+
"""
|
|
3596
|
+
The nodes this is a test for
|
|
3597
|
+
"""
|
|
3598
|
+
isTestFor: [String]
|
|
3599
|
+
pure: Boolean = false
|
|
3600
|
+
idempotent: Boolean = false
|
|
3601
|
+
}
|
|
3602
|
+
|
|
3603
|
+
input PortGroupInput {
|
|
3604
|
+
"""
|
|
3605
|
+
The key of the port group
|
|
3606
|
+
"""
|
|
3607
|
+
key: String!
|
|
3608
|
+
|
|
3609
|
+
"""
|
|
3610
|
+
Is this port group hidden
|
|
3611
|
+
"""
|
|
3612
|
+
hidden: Boolean
|
|
3613
|
+
}
|
|
3614
|
+
|
|
3615
|
+
input PortInput {
|
|
3616
|
+
"""
|
|
3617
|
+
The dependencies of this port
|
|
3618
|
+
"""
|
|
3619
|
+
effects: [EffectInput]
|
|
3620
|
+
|
|
3621
|
+
"""
|
|
3622
|
+
The identifier
|
|
3623
|
+
"""
|
|
3624
|
+
identifier: Identifier
|
|
3625
|
+
|
|
3626
|
+
"""
|
|
3627
|
+
The key of the arg
|
|
3628
|
+
"""
|
|
3629
|
+
key: String!
|
|
3630
|
+
|
|
3631
|
+
"""
|
|
3632
|
+
The scope of this port
|
|
3633
|
+
"""
|
|
3634
|
+
scope: Scope!
|
|
3635
|
+
|
|
3636
|
+
"""
|
|
3637
|
+
The varients of this port (only for union)
|
|
3638
|
+
"""
|
|
3639
|
+
variants: [ChildPortInput]
|
|
3640
|
+
|
|
3641
|
+
"""
|
|
3642
|
+
The name of this argument
|
|
3643
|
+
"""
|
|
3644
|
+
name: String
|
|
3645
|
+
|
|
3646
|
+
"""
|
|
3647
|
+
The name of this argument
|
|
3648
|
+
"""
|
|
3649
|
+
label: String
|
|
3650
|
+
|
|
3651
|
+
"""
|
|
3652
|
+
The type of this argument
|
|
3653
|
+
"""
|
|
3654
|
+
kind: PortKindInput!
|
|
3655
|
+
|
|
3656
|
+
"""
|
|
3657
|
+
The description of this argument
|
|
3658
|
+
"""
|
|
3659
|
+
description: String
|
|
3660
|
+
|
|
3661
|
+
"""
|
|
3662
|
+
The child of this argument
|
|
3663
|
+
"""
|
|
3664
|
+
child: ChildPortInput
|
|
3665
|
+
|
|
3666
|
+
"""
|
|
3667
|
+
The child of this argument
|
|
3668
|
+
"""
|
|
3669
|
+
assignWidget: WidgetInput
|
|
3670
|
+
|
|
3671
|
+
"""
|
|
3672
|
+
The child of this argument
|
|
3673
|
+
"""
|
|
3674
|
+
returnWidget: ReturnWidgetInput
|
|
3675
|
+
|
|
3676
|
+
"""
|
|
3677
|
+
The key of the arg
|
|
3678
|
+
"""
|
|
3679
|
+
default: Any
|
|
3680
|
+
|
|
3681
|
+
"""
|
|
3682
|
+
Is this argument nullable
|
|
3683
|
+
"""
|
|
3684
|
+
nullable: Boolean!
|
|
3685
|
+
|
|
3686
|
+
"""
|
|
3687
|
+
The annotations of this argument
|
|
3688
|
+
"""
|
|
3689
|
+
annotations: [AnnotationInput]
|
|
3690
|
+
|
|
3691
|
+
"""
|
|
3692
|
+
The port group of this argument
|
|
3693
|
+
"""
|
|
3694
|
+
groups: [String]
|
|
3695
|
+
}
|
|
3696
|
+
|
|
3697
|
+
input EffectInput {
|
|
3698
|
+
"""
|
|
3699
|
+
The dependencies of this effect
|
|
3700
|
+
"""
|
|
3701
|
+
dependencies: [DependencyInput]
|
|
3702
|
+
|
|
3703
|
+
"""
|
|
3704
|
+
The condition of the dependency
|
|
3705
|
+
"""
|
|
3706
|
+
kind: EffectKind!
|
|
3707
|
+
message: String
|
|
3708
|
+
}
|
|
3709
|
+
|
|
3710
|
+
input DependencyInput {
|
|
3711
|
+
"""
|
|
3712
|
+
The key of the port, defaults to self
|
|
3713
|
+
"""
|
|
3714
|
+
key: String
|
|
3715
|
+
|
|
3716
|
+
"""
|
|
3717
|
+
The condition of the dependency
|
|
3718
|
+
"""
|
|
3719
|
+
condition: LogicalCondition!
|
|
3720
|
+
value: AnyInput!
|
|
3721
|
+
}
|
|
3722
|
+
|
|
3723
|
+
"""
|
|
3724
|
+
Any any field
|
|
3725
|
+
"""
|
|
3726
|
+
scalar AnyInput
|
|
3727
|
+
|
|
3728
|
+
input ChildPortInput {
|
|
3729
|
+
"""
|
|
3730
|
+
The identifier
|
|
3731
|
+
"""
|
|
3732
|
+
identifier: Identifier
|
|
3733
|
+
|
|
3734
|
+
"""
|
|
3735
|
+
The scope of this port
|
|
3736
|
+
"""
|
|
3737
|
+
scope: Scope!
|
|
3738
|
+
|
|
3739
|
+
"""
|
|
3740
|
+
The name of this port
|
|
3741
|
+
"""
|
|
3742
|
+
name: String
|
|
3743
|
+
|
|
3744
|
+
"""
|
|
3745
|
+
The type of this port
|
|
3746
|
+
"""
|
|
3747
|
+
kind: PortKindInput
|
|
3748
|
+
|
|
3749
|
+
"""
|
|
3750
|
+
The child port
|
|
3751
|
+
"""
|
|
3752
|
+
child: ChildPortInput
|
|
3753
|
+
|
|
3754
|
+
"""
|
|
3755
|
+
Is this argument nullable
|
|
3756
|
+
"""
|
|
3757
|
+
nullable: Boolean!
|
|
3758
|
+
|
|
3759
|
+
"""
|
|
3760
|
+
The annotations of this argument
|
|
3761
|
+
"""
|
|
3762
|
+
annotations: [AnnotationInput]
|
|
3763
|
+
|
|
3764
|
+
"""
|
|
3765
|
+
The varients of this port (only for union)
|
|
3766
|
+
"""
|
|
3767
|
+
variants: [ChildPortInput]
|
|
3768
|
+
|
|
3769
|
+
"""
|
|
3770
|
+
The child of this argument
|
|
3771
|
+
"""
|
|
3772
|
+
assignWidget: WidgetInput
|
|
3773
|
+
|
|
3774
|
+
"""
|
|
3775
|
+
The child of this argument
|
|
3776
|
+
"""
|
|
3777
|
+
returnWidget: ReturnWidgetInput
|
|
3778
|
+
}
|
|
3779
|
+
|
|
3780
|
+
input AnnotationInput {
|
|
3781
|
+
"""
|
|
3782
|
+
The kind of annotation
|
|
3783
|
+
"""
|
|
3784
|
+
kind: AnnotationKind!
|
|
3785
|
+
|
|
3786
|
+
"""
|
|
3787
|
+
The name of this annotation
|
|
3788
|
+
"""
|
|
3789
|
+
name: String
|
|
3790
|
+
|
|
3791
|
+
"""
|
|
3792
|
+
The value of this annotation
|
|
3793
|
+
"""
|
|
3794
|
+
args: String
|
|
3795
|
+
|
|
3796
|
+
"""
|
|
3797
|
+
The min of this annotation (Value Range)
|
|
3798
|
+
"""
|
|
3799
|
+
min: Float
|
|
3800
|
+
|
|
3801
|
+
"""
|
|
3802
|
+
The max of this annotation (Value Range)
|
|
3803
|
+
"""
|
|
3804
|
+
max: Float
|
|
3805
|
+
|
|
3806
|
+
"""
|
|
3807
|
+
A hook for the app to call
|
|
3808
|
+
"""
|
|
3809
|
+
hook: String
|
|
3810
|
+
|
|
3811
|
+
"""
|
|
3812
|
+
The predicate of this annotation (IsPredicate)
|
|
3813
|
+
"""
|
|
3814
|
+
predicate: IsPredicateType
|
|
3815
|
+
|
|
3816
|
+
"""
|
|
3817
|
+
The attribute to check
|
|
3818
|
+
"""
|
|
3819
|
+
attribute: String
|
|
3820
|
+
|
|
3821
|
+
"""
|
|
3822
|
+
The annotation of this annotation
|
|
3823
|
+
"""
|
|
3824
|
+
annotations: [AnnotationInput]
|
|
3825
|
+
}
|
|
3826
|
+
|
|
3827
|
+
"""
|
|
3828
|
+
The kind of annotation
|
|
3829
|
+
"""
|
|
3830
|
+
enum AnnotationKind {
|
|
3831
|
+
ValueRange
|
|
3832
|
+
CustomAnnotation
|
|
3833
|
+
IsPredicate
|
|
3834
|
+
AttributePredicate
|
|
3835
|
+
}
|
|
3836
|
+
|
|
3837
|
+
enum IsPredicateType {
|
|
3838
|
+
LOWER
|
|
3839
|
+
HIGHER
|
|
3840
|
+
DIGIT
|
|
3841
|
+
}
|
|
3842
|
+
|
|
3843
|
+
input WidgetInput {
|
|
3844
|
+
"""
|
|
3845
|
+
type
|
|
3846
|
+
"""
|
|
3847
|
+
kind: WidgetKind!
|
|
3848
|
+
|
|
3849
|
+
"""
|
|
3850
|
+
Do we have a possible
|
|
3851
|
+
"""
|
|
3852
|
+
query: SearchQuery
|
|
3853
|
+
|
|
3854
|
+
"""
|
|
3855
|
+
The dependencies of this port
|
|
3856
|
+
"""
|
|
3857
|
+
choices: [ChoiceInput]
|
|
3858
|
+
|
|
3859
|
+
"""
|
|
3860
|
+
Max value for slider widget
|
|
3861
|
+
"""
|
|
3862
|
+
max: Float
|
|
3863
|
+
|
|
3864
|
+
"""
|
|
3865
|
+
Min value for slider widget
|
|
3866
|
+
"""
|
|
3867
|
+
min: Float
|
|
3868
|
+
|
|
3869
|
+
"""
|
|
3870
|
+
Step value for slider widget
|
|
3871
|
+
"""
|
|
3872
|
+
step: Float
|
|
3873
|
+
|
|
3874
|
+
"""
|
|
3875
|
+
Placeholder for any widget
|
|
3876
|
+
"""
|
|
3877
|
+
placeholder: String
|
|
3878
|
+
|
|
3879
|
+
"""
|
|
3880
|
+
Is this a paragraph
|
|
3881
|
+
"""
|
|
3882
|
+
asParagraph: Boolean
|
|
3883
|
+
|
|
3884
|
+
"""
|
|
3885
|
+
A hook for the app to call
|
|
3886
|
+
"""
|
|
3887
|
+
hook: String
|
|
3888
|
+
|
|
3889
|
+
"""
|
|
3890
|
+
A ward for the app to call
|
|
3891
|
+
"""
|
|
3892
|
+
ward: String
|
|
3893
|
+
|
|
3894
|
+
"""
|
|
3895
|
+
The fields of this widget (onbly on TemplateWidget)
|
|
3896
|
+
"""
|
|
3897
|
+
fields: [TemplateFieldInput]
|
|
3898
|
+
}
|
|
3899
|
+
|
|
3900
|
+
"""
|
|
3901
|
+
The kind of widget
|
|
3902
|
+
"""
|
|
3903
|
+
enum WidgetKind {
|
|
3904
|
+
QueryWidget
|
|
3905
|
+
IntWidget
|
|
3906
|
+
StringWidget
|
|
3907
|
+
SearchWidget
|
|
3908
|
+
SliderWidget
|
|
3909
|
+
LinkWidget
|
|
3910
|
+
BoolWidget
|
|
3911
|
+
ChoiceWidget
|
|
3912
|
+
CustomWidget
|
|
3913
|
+
TemplateWidget
|
|
3914
|
+
DateWidget
|
|
3915
|
+
ColorWidget
|
|
3916
|
+
}
|
|
3917
|
+
|
|
3918
|
+
"""
|
|
3919
|
+
Search query
|
|
3920
|
+
"""
|
|
3921
|
+
scalar SearchQuery
|
|
3922
|
+
|
|
3923
|
+
input ChoiceInput {
|
|
3924
|
+
value: AnyInput!
|
|
3925
|
+
label: String!
|
|
3926
|
+
description: String
|
|
3927
|
+
}
|
|
3928
|
+
|
|
3929
|
+
input TemplateFieldInput {
|
|
3930
|
+
"""
|
|
3931
|
+
The parent key (if nested)
|
|
3932
|
+
"""
|
|
3933
|
+
parent: String
|
|
3934
|
+
|
|
3935
|
+
"""
|
|
3936
|
+
The key of the field
|
|
3937
|
+
"""
|
|
3938
|
+
key: String!
|
|
3939
|
+
|
|
3940
|
+
"""
|
|
3941
|
+
The key of the field
|
|
3942
|
+
"""
|
|
3943
|
+
type: String!
|
|
3944
|
+
|
|
3945
|
+
"""
|
|
3946
|
+
A short description of the field
|
|
3947
|
+
"""
|
|
3948
|
+
description: String
|
|
3949
|
+
}
|
|
3950
|
+
|
|
3951
|
+
input ReturnWidgetInput {
|
|
3952
|
+
"""
|
|
3953
|
+
type
|
|
3954
|
+
"""
|
|
3955
|
+
kind: ReturnWidgetKind!
|
|
3956
|
+
|
|
3957
|
+
"""
|
|
3958
|
+
The dependencies of this port
|
|
3959
|
+
"""
|
|
3960
|
+
choices: [ChoiceInput]
|
|
3961
|
+
|
|
3962
|
+
"""
|
|
3963
|
+
Do we have a possible
|
|
3964
|
+
"""
|
|
3965
|
+
query: String
|
|
3966
|
+
|
|
3967
|
+
"""
|
|
3968
|
+
A hook for the app to call
|
|
3969
|
+
"""
|
|
3970
|
+
hook: String
|
|
3971
|
+
|
|
3972
|
+
"""
|
|
3973
|
+
A hook for the app to call
|
|
3974
|
+
"""
|
|
3975
|
+
ward: String
|
|
3976
|
+
}
|
|
3977
|
+
|
|
3978
|
+
"""
|
|
3979
|
+
The kind of return widget
|
|
3980
|
+
"""
|
|
3981
|
+
enum ReturnWidgetKind {
|
|
3982
|
+
ImageReturnWidget
|
|
3983
|
+
CustomReturnWidget
|
|
3984
|
+
ChoiceReturnWidget
|
|
3985
|
+
}
|
|
3986
|
+
|
|
3987
|
+
input ReserveBindsInput {
|
|
3988
|
+
"""
|
|
3989
|
+
The templates that we are allowed to use
|
|
3990
|
+
"""
|
|
3991
|
+
templates: [ID]!
|
|
3992
|
+
|
|
3993
|
+
"""
|
|
3994
|
+
The clients that we are allowed to use
|
|
3995
|
+
"""
|
|
3996
|
+
clients: [ID]!
|
|
3997
|
+
}
|
|
3998
|
+
|
|
3999
|
+
input ReserveParamsInput {
|
|
4000
|
+
"""
|
|
4001
|
+
Do you want to autoprovide
|
|
4002
|
+
"""
|
|
4003
|
+
autoProvide: Boolean
|
|
4004
|
+
|
|
4005
|
+
"""
|
|
4006
|
+
Do you want to auto_unprovide
|
|
4007
|
+
"""
|
|
4008
|
+
autoUnprovide: Boolean
|
|
4009
|
+
|
|
4010
|
+
"""
|
|
4011
|
+
Registry thar are allowed
|
|
4012
|
+
"""
|
|
4013
|
+
registries: [ID]
|
|
4014
|
+
|
|
4015
|
+
"""
|
|
4016
|
+
Agents that are allowed
|
|
4017
|
+
"""
|
|
4018
|
+
agents: [ID]
|
|
4019
|
+
|
|
4020
|
+
"""
|
|
4021
|
+
Templates that can be selected
|
|
4022
|
+
"""
|
|
4023
|
+
templates: [ID]
|
|
4024
|
+
|
|
4025
|
+
"""
|
|
4026
|
+
The desired amount of Instances
|
|
4027
|
+
"""
|
|
4028
|
+
desiredInstances: Int!
|
|
4029
|
+
|
|
4030
|
+
"""
|
|
4031
|
+
The minimal amount of Instances
|
|
4032
|
+
"""
|
|
4033
|
+
minimalInstances: Int!
|
|
4034
|
+
}
|
|
4035
|
+
|
|
4036
|
+
type UnprovideReturn {
|
|
4037
|
+
id: ID!
|
|
4038
|
+
}
|
|
4039
|
+
|
|
4040
|
+
type UnreserveResult {
|
|
4041
|
+
id: ID!
|
|
4042
|
+
}
|
|
4043
|
+
|
|
4044
|
+
type Tell {
|
|
4045
|
+
reference: String
|
|
4046
|
+
}
|
|
4047
|
+
|
|
4048
|
+
input MessageInput {
|
|
4049
|
+
kind: MessageKind!
|
|
4050
|
+
text: String!
|
|
4051
|
+
reference: String!
|
|
4052
|
+
data: AnyInput!
|
|
4053
|
+
}
|
|
4054
|
+
|
|
4055
|
+
enum MessageKind {
|
|
4056
|
+
TERMINATE
|
|
4057
|
+
CANCEL
|
|
4058
|
+
ASSIGN
|
|
4059
|
+
TELL
|
|
4060
|
+
}
|
|
4061
|
+
|
|
4062
|
+
type ResetRepositoryReturn {
|
|
4063
|
+
ok: Boolean
|
|
4064
|
+
}
|
|
4065
|
+
|
|
4066
|
+
type ResetAgentsReturn {
|
|
4067
|
+
ok: Boolean
|
|
4068
|
+
}
|
|
4069
|
+
|
|
4070
|
+
type ResetAssignationsReturn {
|
|
4071
|
+
ok: Boolean
|
|
4072
|
+
}
|
|
4073
|
+
|
|
4074
|
+
type ResetNodesReturn {
|
|
4075
|
+
ok: Boolean
|
|
4076
|
+
}
|
|
4077
|
+
|
|
4078
|
+
type ResetProvisionsReturn {
|
|
4079
|
+
ok: Boolean
|
|
4080
|
+
}
|
|
4081
|
+
|
|
4082
|
+
type ResetReservationsReturn {
|
|
4083
|
+
ok: Boolean
|
|
4084
|
+
}
|
|
4085
|
+
|
|
4086
|
+
type DeleteAgentReturn {
|
|
4087
|
+
id: String
|
|
4088
|
+
}
|
|
4089
|
+
|
|
4090
|
+
type DeleteTestCaseResult {
|
|
4091
|
+
id: String
|
|
4092
|
+
}
|
|
4093
|
+
|
|
4094
|
+
type ChangePermissionsResult {
|
|
4095
|
+
success: Boolean
|
|
4096
|
+
message: String
|
|
4097
|
+
}
|
|
4098
|
+
|
|
4099
|
+
input GroupAssignmentInput {
|
|
4100
|
+
permissions: [String]!
|
|
4101
|
+
group: ID!
|
|
4102
|
+
}
|
|
4103
|
+
|
|
4104
|
+
input UserAssignmentInput {
|
|
4105
|
+
permissions: [String]!
|
|
4106
|
+
|
|
4107
|
+
"""
|
|
4108
|
+
The user id
|
|
4109
|
+
"""
|
|
4110
|
+
user: String!
|
|
4111
|
+
}
|
|
4112
|
+
|
|
4113
|
+
"""
|
|
4114
|
+
The root Subscriptions
|
|
4115
|
+
"""
|
|
4116
|
+
type Subscription {
|
|
4117
|
+
agentsEvent(
|
|
4118
|
+
"""
|
|
4119
|
+
The log level for alterations
|
|
4120
|
+
"""
|
|
4121
|
+
level: String
|
|
4122
|
+
): AgentEvent
|
|
4123
|
+
assignation(
|
|
4124
|
+
"""
|
|
4125
|
+
The reference of the assignation
|
|
4126
|
+
"""
|
|
4127
|
+
id: ID!
|
|
4128
|
+
|
|
4129
|
+
"""
|
|
4130
|
+
The log level for alterations
|
|
4131
|
+
"""
|
|
4132
|
+
level: String
|
|
4133
|
+
): AssignationEvent
|
|
4134
|
+
myrequests(
|
|
4135
|
+
"""
|
|
4136
|
+
The log level for alterations
|
|
4137
|
+
"""
|
|
4138
|
+
level: String
|
|
4139
|
+
): AssignationsEvent
|
|
4140
|
+
requests(
|
|
4141
|
+
"""
|
|
4142
|
+
The log level for alterations
|
|
4143
|
+
"""
|
|
4144
|
+
instanceId: String!
|
|
4145
|
+
): AssignationsEvent
|
|
4146
|
+
todos(
|
|
4147
|
+
"""
|
|
4148
|
+
The reference of this todos
|
|
4149
|
+
"""
|
|
4150
|
+
instanceId: String!
|
|
4151
|
+
): TodoEvent
|
|
4152
|
+
mytodos: TodoEvent
|
|
4153
|
+
provision(
|
|
4154
|
+
"""
|
|
4155
|
+
The reference of the assignation
|
|
4156
|
+
"""
|
|
4157
|
+
id: ID!
|
|
4158
|
+
|
|
4159
|
+
"""
|
|
4160
|
+
The log level for alterations
|
|
4161
|
+
"""
|
|
4162
|
+
level: String
|
|
4163
|
+
): ProvisionEvent
|
|
4164
|
+
provisions(
|
|
4165
|
+
"""
|
|
4166
|
+
The reference of this waiter
|
|
4167
|
+
"""
|
|
4168
|
+
identifier: String!
|
|
4169
|
+
): ProvisionsEvent
|
|
4170
|
+
myprovisions: ProvisionsEvent
|
|
4171
|
+
waiter(
|
|
4172
|
+
"""
|
|
4173
|
+
The log level for alterations
|
|
4174
|
+
"""
|
|
4175
|
+
level: String
|
|
4176
|
+
): WaiterEvent
|
|
4177
|
+
reservation(
|
|
4178
|
+
"""
|
|
4179
|
+
The reference of the assignation
|
|
4180
|
+
"""
|
|
4181
|
+
id: ID!
|
|
4182
|
+
|
|
4183
|
+
"""
|
|
4184
|
+
The log level for alterations
|
|
4185
|
+
"""
|
|
4186
|
+
level: String
|
|
4187
|
+
): ReservationEvent
|
|
4188
|
+
myreservations(
|
|
4189
|
+
"""
|
|
4190
|
+
The log level for alterations
|
|
4191
|
+
"""
|
|
4192
|
+
level: String
|
|
4193
|
+
): ReservationsEvent
|
|
4194
|
+
reservations(
|
|
4195
|
+
"""
|
|
4196
|
+
The reference of this waiter
|
|
4197
|
+
"""
|
|
4198
|
+
instanceId: String!
|
|
4199
|
+
|
|
4200
|
+
"""
|
|
4201
|
+
The reference of the provision (if we want to only listen to this)
|
|
4202
|
+
"""
|
|
4203
|
+
provision: String
|
|
4204
|
+
): ReservationsEvent
|
|
4205
|
+
nodes(
|
|
4206
|
+
"""
|
|
4207
|
+
List only nodes with this interface
|
|
4208
|
+
"""
|
|
4209
|
+
interface: String
|
|
4210
|
+
|
|
4211
|
+
"""
|
|
4212
|
+
The log level for alterations
|
|
4213
|
+
"""
|
|
4214
|
+
level: String
|
|
4215
|
+
): NodeEvent
|
|
4216
|
+
nodeEvent(
|
|
4217
|
+
"""
|
|
4218
|
+
The Id of the node you are intereset in
|
|
4219
|
+
"""
|
|
4220
|
+
id: ID!
|
|
4221
|
+
): Node
|
|
4222
|
+
templates(
|
|
4223
|
+
"""
|
|
4224
|
+
The params to filter by
|
|
4225
|
+
"""
|
|
4226
|
+
templateParams: [TemplateParamInput]
|
|
4227
|
+
): TemplateEvent
|
|
4228
|
+
|
|
4229
|
+
"My Mentions\n\n Returns an event of a new mention for the user if the user \n was mentioned in a comment.\n "
|
|
4230
|
+
mymentions: MentionEvent
|
|
4231
|
+
}
|
|
4232
|
+
|
|
4233
|
+
type AgentEvent {
|
|
4234
|
+
created: Agent
|
|
4235
|
+
deleted: ID
|
|
4236
|
+
updated: Agent
|
|
4237
|
+
}
|
|
4238
|
+
|
|
4239
|
+
type AssignationEvent {
|
|
4240
|
+
log: AssignationLogEvent
|
|
4241
|
+
}
|
|
4242
|
+
|
|
4243
|
+
type AssignationLogEvent {
|
|
4244
|
+
message: String
|
|
4245
|
+
level: String
|
|
4246
|
+
}
|
|
4247
|
+
|
|
4248
|
+
type AssignationsEvent {
|
|
4249
|
+
delete: ID
|
|
4250
|
+
update: Assignation
|
|
4251
|
+
create: Assignation
|
|
4252
|
+
}
|
|
4253
|
+
|
|
4254
|
+
type TodoEvent {
|
|
4255
|
+
update: Assignation
|
|
4256
|
+
delete: ID
|
|
4257
|
+
create: Assignation
|
|
4258
|
+
}
|
|
4259
|
+
|
|
4260
|
+
type ProvisionEvent {
|
|
4261
|
+
log: ProvisionLogEvent
|
|
4262
|
+
}
|
|
4263
|
+
|
|
4264
|
+
type ProvisionLogEvent {
|
|
4265
|
+
message: String
|
|
4266
|
+
level: String
|
|
4267
|
+
}
|
|
4268
|
+
|
|
4269
|
+
type ProvisionsEvent {
|
|
4270
|
+
delete: ID
|
|
4271
|
+
update: Provision
|
|
4272
|
+
create: Provision
|
|
4273
|
+
}
|
|
4274
|
+
|
|
4275
|
+
type WaiterEvent {
|
|
4276
|
+
created: Waiter
|
|
4277
|
+
deleted: ID
|
|
4278
|
+
updated: Waiter
|
|
4279
|
+
}
|
|
4280
|
+
|
|
4281
|
+
type ReservationEvent {
|
|
4282
|
+
log: ReservationLogEvent
|
|
4283
|
+
}
|
|
4284
|
+
|
|
4285
|
+
type ReservationLogEvent {
|
|
4286
|
+
message: String
|
|
4287
|
+
level: String
|
|
4288
|
+
}
|
|
4289
|
+
|
|
4290
|
+
type ReservationsEvent {
|
|
4291
|
+
update: Reservation
|
|
4292
|
+
delete: ID
|
|
4293
|
+
create: Reservation
|
|
4294
|
+
}
|
|
4295
|
+
|
|
4296
|
+
type NodeEvent {
|
|
4297
|
+
created: Node
|
|
4298
|
+
deleted: ID
|
|
4299
|
+
updated: Node
|
|
4300
|
+
}
|
|
4301
|
+
|
|
4302
|
+
type TemplateEvent {
|
|
4303
|
+
created: Template
|
|
4304
|
+
deleted: ID
|
|
4305
|
+
updated: Template
|
|
4306
|
+
}
|
|
4307
|
+
|
|
4308
|
+
type MentionEvent {
|
|
4309
|
+
deleted: ID
|
|
4310
|
+
update: Comment
|
|
4311
|
+
create: Comment
|
|
4312
|
+
}
|
|
4313
|
+
|
|
4314
|
+
type ValueRange implements Annotation {
|
|
4315
|
+
"""
|
|
4316
|
+
The name of the annotation
|
|
4317
|
+
"""
|
|
4318
|
+
kind: String
|
|
4319
|
+
|
|
4320
|
+
"""
|
|
4321
|
+
The minimum value
|
|
4322
|
+
"""
|
|
4323
|
+
min: Float!
|
|
4324
|
+
|
|
4325
|
+
"""
|
|
4326
|
+
The maximum value
|
|
4327
|
+
"""
|
|
4328
|
+
max: Float!
|
|
4329
|
+
}
|
|
4330
|
+
|
|
4331
|
+
type CustomAnnotation implements Annotation {
|
|
4332
|
+
"""
|
|
4333
|
+
The name of the annotation
|
|
4334
|
+
"""
|
|
4335
|
+
kind: String
|
|
4336
|
+
|
|
4337
|
+
"""
|
|
4338
|
+
The arguments for this annotation
|
|
4339
|
+
"""
|
|
4340
|
+
args: [String]
|
|
4341
|
+
|
|
4342
|
+
"""
|
|
4343
|
+
The hook for this annotation
|
|
4344
|
+
"""
|
|
4345
|
+
hook: String!
|
|
4346
|
+
}
|
|
4347
|
+
|
|
4348
|
+
type IsPredicate implements Annotation {
|
|
4349
|
+
"""
|
|
4350
|
+
The name of the annotation
|
|
4351
|
+
"""
|
|
4352
|
+
kind: String
|
|
4353
|
+
|
|
4354
|
+
"""
|
|
4355
|
+
The arguments for this annotation
|
|
4356
|
+
"""
|
|
4357
|
+
predicate: IsPredicateType!
|
|
4358
|
+
}
|
|
4359
|
+
|
|
4360
|
+
"""
|
|
4361
|
+
A predicate that checks if an atribute fullfills a certain condition
|
|
4362
|
+
"""
|
|
4363
|
+
type AttributePredicate implements Annotation {
|
|
4364
|
+
"""
|
|
4365
|
+
The name of the annotation
|
|
4366
|
+
"""
|
|
4367
|
+
kind: String
|
|
4368
|
+
|
|
4369
|
+
"""
|
|
4370
|
+
The attribute to check
|
|
4371
|
+
"""
|
|
4372
|
+
attribute: String!
|
|
4373
|
+
|
|
4374
|
+
"""
|
|
4375
|
+
The annotations for this attribute
|
|
4376
|
+
"""
|
|
4377
|
+
annotations: [Annotation]
|
|
4378
|
+
}
|
|
4379
|
+
|
|
4380
|
+
type QueryWidget implements Widget {
|
|
4381
|
+
kind: String!
|
|
4382
|
+
|
|
4383
|
+
"""
|
|
4384
|
+
A Complex description
|
|
4385
|
+
"""
|
|
4386
|
+
query: String
|
|
4387
|
+
}
|
|
4388
|
+
|
|
4389
|
+
type LinkWidget implements Widget {
|
|
4390
|
+
kind: String!
|
|
4391
|
+
|
|
4392
|
+
"""
|
|
4393
|
+
A Complex description
|
|
4394
|
+
"""
|
|
4395
|
+
linkbuilder: String
|
|
4396
|
+
}
|
|
4397
|
+
|
|
4398
|
+
type SearchWidget implements Widget {
|
|
4399
|
+
kind: String!
|
|
4400
|
+
|
|
4401
|
+
"""
|
|
4402
|
+
A Complex description
|
|
4403
|
+
"""
|
|
4404
|
+
query: String!
|
|
4405
|
+
|
|
4406
|
+
"""
|
|
4407
|
+
A ward for the app to call
|
|
4408
|
+
"""
|
|
4409
|
+
ward: String!
|
|
4410
|
+
}
|
|
4411
|
+
|
|
4412
|
+
type BoolWidget implements Widget {
|
|
4413
|
+
kind: String!
|
|
4414
|
+
}
|
|
4415
|
+
|
|
4416
|
+
type ChoiceWidget implements Widget {
|
|
4417
|
+
kind: String!
|
|
4418
|
+
|
|
4419
|
+
"""
|
|
4420
|
+
A list of choices
|
|
4421
|
+
"""
|
|
4422
|
+
choices: [Choice]
|
|
4423
|
+
}
|
|
4424
|
+
|
|
4425
|
+
type Choice {
|
|
4426
|
+
value: GenericScalar!
|
|
4427
|
+
label: String!
|
|
4428
|
+
description: String
|
|
4429
|
+
}
|
|
4430
|
+
|
|
4431
|
+
type IntWidget implements Widget {
|
|
4432
|
+
kind: String!
|
|
4433
|
+
|
|
4434
|
+
"""
|
|
4435
|
+
A Complex description
|
|
4436
|
+
"""
|
|
4437
|
+
query: String
|
|
4438
|
+
}
|
|
4439
|
+
|
|
4440
|
+
type SliderWidget implements Widget {
|
|
4441
|
+
kind: String!
|
|
4442
|
+
|
|
4443
|
+
"""
|
|
4444
|
+
A Complex description
|
|
4445
|
+
"""
|
|
4446
|
+
min: Float
|
|
4447
|
+
|
|
4448
|
+
"""
|
|
4449
|
+
A Complex description
|
|
4450
|
+
"""
|
|
4451
|
+
max: Float
|
|
4452
|
+
|
|
4453
|
+
"""
|
|
4454
|
+
A Complex description
|
|
4455
|
+
"""
|
|
4456
|
+
step: Float
|
|
4457
|
+
}
|
|
4458
|
+
|
|
4459
|
+
type StringWidget implements Widget {
|
|
4460
|
+
kind: String!
|
|
4461
|
+
|
|
4462
|
+
"""
|
|
4463
|
+
A placeholder to display
|
|
4464
|
+
"""
|
|
4465
|
+
placeholder: String
|
|
4466
|
+
|
|
4467
|
+
"""
|
|
4468
|
+
Whether to display as paragraph
|
|
4469
|
+
"""
|
|
4470
|
+
asParagraph: Boolean
|
|
4471
|
+
}
|
|
4472
|
+
|
|
4473
|
+
type CustomWidget implements Widget {
|
|
4474
|
+
kind: String!
|
|
4475
|
+
|
|
4476
|
+
"""
|
|
4477
|
+
A hook for the ward to call
|
|
4478
|
+
"""
|
|
4479
|
+
hook: String
|
|
4480
|
+
|
|
4481
|
+
"""
|
|
4482
|
+
A ward for the app to call
|
|
4483
|
+
"""
|
|
4484
|
+
ward: String
|
|
4485
|
+
}
|
|
4486
|
+
|
|
4487
|
+
type DateWidget implements Widget {
|
|
4488
|
+
kind: String!
|
|
4489
|
+
|
|
4490
|
+
"""
|
|
4491
|
+
A start date
|
|
4492
|
+
"""
|
|
4493
|
+
startDate: String
|
|
4494
|
+
}
|
|
4495
|
+
|
|
4496
|
+
type ColorWidget implements Widget {
|
|
4497
|
+
kind: String!
|
|
4498
|
+
|
|
4499
|
+
"""
|
|
4500
|
+
A start date
|
|
4501
|
+
"""
|
|
4502
|
+
startDate: String
|
|
4503
|
+
}
|
|
4504
|
+
|
|
4505
|
+
type TemplateWidget implements Widget {
|
|
4506
|
+
kind: String!
|
|
4507
|
+
fields: [TemplateField]!
|
|
4508
|
+
}
|
|
4509
|
+
|
|
4510
|
+
type TemplateField {
|
|
4511
|
+
"""
|
|
4512
|
+
The parent key (if nested)
|
|
4513
|
+
"""
|
|
4514
|
+
parent: String
|
|
4515
|
+
|
|
4516
|
+
"""
|
|
4517
|
+
The key of the field
|
|
4518
|
+
"""
|
|
4519
|
+
key: String!
|
|
4520
|
+
|
|
4521
|
+
"""
|
|
4522
|
+
The type of the field
|
|
4523
|
+
"""
|
|
4524
|
+
type: String!
|
|
4525
|
+
|
|
4526
|
+
"""
|
|
4527
|
+
A short description of the field
|
|
4528
|
+
"""
|
|
4529
|
+
description: String!
|
|
4530
|
+
}
|
|
4531
|
+
|
|
4532
|
+
type ImageReturnWidget implements ReturnWidget {
|
|
4533
|
+
kind: String!
|
|
4534
|
+
|
|
4535
|
+
"""
|
|
4536
|
+
A query that returns an image path
|
|
4537
|
+
"""
|
|
4538
|
+
query: String
|
|
4539
|
+
|
|
4540
|
+
"""
|
|
4541
|
+
A hook for the app to call
|
|
4542
|
+
"""
|
|
4543
|
+
ward: String
|
|
4544
|
+
}
|
|
4545
|
+
|
|
4546
|
+
type CustomReturnWidget implements ReturnWidget {
|
|
4547
|
+
kind: String!
|
|
4548
|
+
|
|
4549
|
+
"""
|
|
4550
|
+
A hook for the app to call
|
|
4551
|
+
"""
|
|
4552
|
+
hook: String
|
|
4553
|
+
|
|
4554
|
+
"""
|
|
4555
|
+
A hook for the app to call
|
|
4556
|
+
"""
|
|
4557
|
+
ward: String
|
|
4558
|
+
}
|
|
4559
|
+
|
|
4560
|
+
type ChoiceReturnWidget implements ReturnWidget {
|
|
4561
|
+
kind: String!
|
|
4562
|
+
|
|
4563
|
+
"""
|
|
4564
|
+
A list of choices
|
|
4565
|
+
"""
|
|
4566
|
+
choices: [Choice]
|
|
4567
|
+
}
|
|
4568
|
+
|
|
4569
|
+
"""
|
|
4570
|
+
A node in the comment tree
|
|
4571
|
+
"""
|
|
4572
|
+
interface CommentNode {
|
|
4573
|
+
children: [Descendent]
|
|
4574
|
+
untypedChildren: GenericScalar
|
|
4575
|
+
}
|
|
4576
|
+
|
|
4577
|
+
"""
|
|
4578
|
+
A leaf in the comment tree. Representations some sort of text
|
|
4579
|
+
"""
|
|
4580
|
+
type Leaf implements Descendent {
|
|
4581
|
+
typename: String
|
|
4582
|
+
|
|
4583
|
+
"""
|
|
4584
|
+
Is this a bold leaf?
|
|
4585
|
+
"""
|
|
4586
|
+
bold: Boolean
|
|
4587
|
+
|
|
4588
|
+
"""
|
|
4589
|
+
Is this a italic leaf?
|
|
4590
|
+
"""
|
|
4591
|
+
italic: Boolean
|
|
4592
|
+
|
|
4593
|
+
"""
|
|
4594
|
+
Is this a code leaf?
|
|
4595
|
+
"""
|
|
4596
|
+
code: Boolean
|
|
4597
|
+
|
|
4598
|
+
"""
|
|
4599
|
+
The text of the leaf
|
|
4600
|
+
"""
|
|
4601
|
+
text: String
|
|
4602
|
+
}
|
|
4603
|
+
|
|
4604
|
+
"""
|
|
4605
|
+
A mention in the comment tree. This is a reference to another user on the platform
|
|
4606
|
+
"""
|
|
4607
|
+
type MentionDescendent implements CommentNode & Descendent {
|
|
4608
|
+
children: [Descendent]
|
|
4609
|
+
untypedChildren: GenericScalar
|
|
4610
|
+
typename: String
|
|
4611
|
+
|
|
4612
|
+
"""
|
|
4613
|
+
The user that is mentioned
|
|
4614
|
+
"""
|
|
4615
|
+
user: User!
|
|
4616
|
+
}
|
|
4617
|
+
|
|
4618
|
+
"""
|
|
4619
|
+
A paragraph in the comment tree. This paragraph contains other nodes (list nodes)
|
|
4620
|
+
"""
|
|
4621
|
+
type ParagraphDescendent implements CommentNode & Descendent {
|
|
4622
|
+
children: [Descendent]
|
|
4623
|
+
untypedChildren: GenericScalar
|
|
4624
|
+
typename: String
|
|
4625
|
+
|
|
4626
|
+
"""
|
|
4627
|
+
The size of the paragraph
|
|
4628
|
+
"""
|
|
4629
|
+
size: String
|
|
4630
|
+
}
|