-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathschema.graphql
638 lines (574 loc) · 13.1 KB
/
schema.graphql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
# Exposes a URL that specifies the behaviour of this scalar.
directive @specifiedBy(
# The URL that specifies the behaviour of this scalar.
url: String!
) on SCALAR
type AccountObjectType {
created: DateTime!
lastModified: DateTime!
idAccount: ID!
sfId: String
number: String!
name: String
isDeleted: Int!
isShared: Boolean
useraccountSet: [UserAccountObjectType!]!
leaders: [MemberObjectType]
members: [MemberObjectType]
}
type ApiAccessObjectType {
created: DateTime!
lastModified: DateTime!
idApiAccess: ID!
description: String!
apikey: String!
apisecret: String!
user: RestrictedUserObjectType!
isActive: Int!
isDownloadable: Boolean
}
input AttributeParams {
name: String!
value: String!
}
type AttributeType {
idAttribute: ID!
name: String!
description: String!
type: String!
format: String!
errorMessage: String
idUserOwner: Float!
created: DateTime
lastModified: DateTime
isMutable: Int!
attributevalueSet: [AttributeValueType!]!
}
type AttributeValueType {
idAttributeValue: ID!
attribute: AttributeType!
value: String
idUserOwner: Float!
created: DateTime
lastModified: DateTime
datasetSet: [DatasetType!]!
workflowSet: [WorkflowType!]!
workflowinstanceSet: [WorkflowInstanceType!]!
}
type CreateApiAccessMutation {
apiAccess: ApiAccessObjectType
}
type CreateProductMutation {
product: ProductType
}
type CreateWorkflowInstanceReportShareMutation {
idWorkflowInstance: ID
token: String
expiry: DateTime
}
type CreateWorkflowInstanceTagsMutation {
workflowInstance: WorkflowInstanceType
created: [TagDataType!]
errors: [ValidationErrorListType]
}
type DatasetStatusType {
idDatasetStatus: ID!
value: String!
label: String
created: DateTime
lastModified: DateTime!
datasetSet: [DatasetType!]!
}
type DatasetType {
idDataset: ID!
uuid: String!
idAccount: Float!
prefix: String!
name: String
idUser: Float!
size: Float!
summary: String
source: String
componentId: String!
isConsentedHuman: Int
registrationParams: GenericScalar
datasetStatus: DatasetStatusType!
created: DateTime!
lastModified: DateTime!
attributes: [AttributeValueType!]!
workflowinstanceSet: [WorkflowInstanceType!]!
}
scalar DateTime
type DeactivateApiAccessMutation {
apiAccess: LimitedApiAccessObjectType
}
type DeleteWorkflowInstanceTagsMutation {
workflowInstance: WorkflowInstanceType
deleted: [TagDataOutputType]
errors: [ValidationErrorListType]
}
input DocumentationSectionInputType {
title: String
section: String
format: String
content: String
}
type DocumentationType {
published: DateTime
languageCode: String
title: String
section: String
format: String
content: String
}
type EditWorkflowInstanceTagsMutation {
workflowInstance: WorkflowInstanceType
edited: [TagDataType!]
errors: [ValidationErrorListType]
}
type ErrorType {
field: String!
messages: [String!]!
}
type GenerateRegTokenMutation {
code: String
expires: DateTime
}
scalar GenericScalar
type InstanceTokenMutation {
idWorkflowInstance: ID
accessKeyId: String
secretAccessKey: String
sessionToken: String
expiration: DateTime
region: String
}
type LimitedApiAccessObjectType {
created: DateTime!
lastModified: DateTime!
idApiAccess: ID!
description: String!
apikey: String!
user: RestrictedUserObjectType!
isActive: Int!
}
type LinkWorkflowToProductMutation {
workflowProduct: WorkflowProductType
}
type MemberObjectType {
user: RestrictedUserObjectType
role: String
}
type Mutation {
startWorkflowInstance(
computeAccountId: ID!
idDataset: ID
idWorkflow: ID!
instanceAttributes: [GenericScalar]
isConsentedHuman: Boolean
region: String
storageAccountId: ID
storeResults: Boolean
userDefined: GenericScalar
): WorkflowInstanceMutation
stopWorkflowInstance(idWorkflowInstance: ID!): StopWorkflowInstanceMutation
createWorkflowInstanceReportShare(
idWorkflowInstance: ID!
): CreateWorkflowInstanceReportShareMutation
getInstanceToken(
idWorkflowInstance: ID!
readOnly: Boolean
): InstanceTokenMutation
setUserFavouriteWorkflow(
idRegion: ID
idWorkflow: ID!
isFavourite: Boolean!
): UpdateUserFavouriteWorkflowMutation
setWorkflowInstanceIsArchived(
idWorkflowInstance: ID!
isArchived: Boolean
): SetWorkflowInstanceIsArchivedMutation
createWorkflowInstanceTags(
createList: [TagDataCreateInputType!]
idWorkflowInstance: ID!
): CreateWorkflowInstanceTagsMutation
editWorkflowInstanceTags(
editList: [TagDataEditInputType!]
idWorkflowInstance: ID!
): EditWorkflowInstanceTagsMutation
deleteWorkflowInstanceTags(
deleteList: [ID!]
idWorkflowInstance: ID!
): DeleteWorkflowInstanceTagsMutation
createProduct(
isPublic: Boolean
name: String!
orgContactEmail: String
orgContactName: String
orgName: String
orgUrl: String
tagline: String
): CreateProductMutation
linkWorkflowToProduct(
exampleUrl: String
idProduct: ID
idWorkflow: ID!
productName: ID
): LinkWorkflowToProductMutation
publishProductDocumentation(
idWorkflow: ID!
languageCode: String
sections: [DocumentationSectionInputType]!
): PublishProductDocumentationMutation
registerToken(code: String!, description: String): RegisterTokenMutation
generateRegToken: GenerateRegTokenMutation
updateUser(idRegionPreferred: ID, realname: String): UpdateUserMutation
deactivateApiKey(idApiAccess: ID): DeactivateApiAccessMutation
createApiKey(description: String): CreateApiAccessMutation
updateAccountShared(
idAccount: ID!
isShared: Boolean!
): UpdateAccountSharedMutation
}
type PaginatedDatasetType implements PaginatedInterface {
page: Int
pages: Int
hasNext: Boolean
hasPrevious: Boolean
totalCount: Int
results: [DatasetType]
}
interface PaginatedInterface {
page: Int
pages: Int
hasNext: Boolean
hasPrevious: Boolean
totalCount: Int
}
type PaginatedProductType implements PaginatedInterface {
page: Int
pages: Int
hasNext: Boolean
hasPrevious: Boolean
totalCount: Int
results: [ProductType]
}
type PaginatedWorkflowInstanceType implements PaginatedInterface {
page: Int
pages: Int
hasNext: Boolean
hasPrevious: Boolean
totalCount: Int
results: [WorkflowInstanceType]
}
type PaginatedWorkflowType implements PaginatedInterface {
page: Int
pages: Int
hasNext: Boolean
hasPrevious: Boolean
totalCount: Int
results: [WorkflowType]
}
type ProductType {
idProduct: ID!
name: String!
tagline: String
orgName: String
orgContactName: String
orgContactEmail: String
orgUrl: String
isPublic: Boolean!
created: DateTime!
lastModified: DateTime!
workflows: [WorkflowType!]!
workflowProducts: [WorkflowProductType!]!
}
type PublishProductDocumentationMutation {
success: Boolean
}
type Query {
allProducts(
search: String
page: Int
pageSize: Int
orderBy: String
): PaginatedProductType
product(idProduct: ID!): ProductType
allWorkflowInstances(
idUser: ID
shared: Boolean
search: String
searchField: WorkflowInstanceSearchField
isRunning: Boolean
archived: Boolean
owned: Boolean
attrsFilter: [AttributeParams]
page: Int
pageSize: Int
orderBy: String
): PaginatedWorkflowInstanceType
workflowInstance(idWorkflowInstance: ID!): WorkflowInstanceType
workflowInstanceTelemetry(
idWorkflowInstance: ID!
report: String!
): WorkflowInstanceTelemetry
workflowInstanceRawCsvUrlData(
idWorkflowInstance: ID!
filename: String!
): WorkflowCSVPresignedUrlsType
allWorkflows(
isActive: Int
region: String
attrsFilter: AttributeParams
attrFilters: [AttributeParams]
search: String
searchField: WorkflowSearchField
page: Int
pageSize: Int
orderBy: String
): PaginatedWorkflowType
allDatasets(
onlyReferences: Boolean
page: Int
pageSize: Int
orderBy: String
): PaginatedDatasetType
workflow(idWorkflow: ID!): WorkflowType
status: StatusType
regions: [RegionType]
attributes: [AttributeType]
allUsers: [UserObjectType]
allUserAccounts: [UserAccountObjectType]
me: UserObjectType
allApiKeys(isActive: Boolean): [LimitedApiAccessObjectType]
account(idAccount: ID!): AccountObjectType
userServiceStatus: ServiceStatusType
}
type RegionType {
idRegion: ID!
provider: String
name: String!
description: String!
workflowimageSet: [WorkflowImageType!]!
userfavouriteworkflowSet: [UserFavouriteWorkflowType!]!
}
type RegisterTokenMutation {
apikey: String
apisecret: String
description: String
}
type ReportType {
idReport: ID!
name: String!
idOwner: Float!
url: String!
revision: String!
created: DateTime
lastModified: DateTime!
workflowSet: [WorkflowType!]!
}
type RestrictedUserObjectType {
created: DateTime!
lastModified: DateTime!
idUser: ID!
username: String!
realname: String!
isActive: Int!
idRegionPreferred: Int!
apiaccessSet: [LimitedApiAccessObjectType!]!
}
type ServiceStatusType {
serviceVersion: String
dbVersion: String
minimumAgent: String
remoteAddr: String
serverTime: DateTime
}
type SetWorkflowInstanceIsArchivedMutation {
workflowInstance: WorkflowInstanceType
}
type StatusType {
minimumAgent: String
dbVersion: String
portalVersion: String
remoteAddr: String
serverTime: DateTime
}
type StopWorkflowInstanceMutation {
success: Boolean
message: String
}
input TagDataCreateInputType {
idAttribute: ID
attributeName: String
value: String!
}
input TagDataEditInputType {
idAttributeValue: ID!
value: String!
}
type TagDataOutputType {
idAttributeValue: ID!
value: String!
}
type TagDataType {
idAttributeValue: ID!
value: String
}
type UpdateAccountSharedMutation {
account: AccountObjectType
}
type UpdateUserFavouriteWorkflowMutation {
wasChanged: Boolean
idRegion: ID
idUser: ID
idWorkflow: ID
}
type UpdateUserMutation {
idRegionPreferred: ID
user: UserObjectType
}
type UserAccountObjectType {
created: DateTime!
lastModified: DateTime!
idUserAccount: ID!
user: RestrictedUserObjectType!
account: AccountObjectType!
role: UserAccountRole!
agreementNumber: String
isActive: Int!
}
enum UserAccountRole {
L
P
}
type UserFavouriteWorkflowType {
idUserFavouriteWorkflow: ID!
idUser: Float!
workflow: WorkflowType!
region: RegionType!
created: DateTime!
lastModified: DateTime!
}
type UserObjectType {
created: DateTime!
lastModified: DateTime!
idUser: ID!
username: String!
realname: String!
isActive: Int!
idRegionPreferred: Int!
useraccountSet: [UserAccountObjectType!]!
apiaccessSet: [LimitedApiAccessObjectType!]!
}
type ValidationErrorListType {
input: GenericScalar
errors: [ErrorType]
}
type WorkflowCSVFilenameType {
idWorkflow: ID
filename: String
}
type WorkflowCSVPresignedUrlsType {
getUrl: String
headUrl: String
expiresIn: Int
}
type WorkflowImageType {
idWorkflowImage: ID!
region: RegionType!
workflow: WorkflowType!
inputqueue: String
userdataCommand: String
userdateScript: String
dockerImage: String
workflowinstanceSet: [WorkflowInstanceType!]!
}
type WorkflowInstanceMutation {
bucket: String
idUser: Int
instance: WorkflowInstanceType
remoteAddr: String
}
enum WorkflowInstanceSearchField {
INSTANCE_ID
WORKFLOW_ID
WORKFLOW_NAME
WORKFLOW_REV
RUN_ID
ATTRIBUTE
}
type WorkflowInstanceTelemetry {
getUrl: String
headUrl: String
expiresIn: Int
}
type WorkflowInstanceType {
idWorkflowInstance: ID!
idUser: Float!
startDate: DateTime!
stopDate: DateTime
workflowImage: WorkflowImageType!
outputqueue: String
chain: GenericScalar
isConsentedHuman: Int
lastModified: DateTime
isArchived: Boolean
attributes: [AttributeValueType!]!
dataset: [DatasetType!]!
telemetry: GenericScalar
mappedTelemetry: GenericScalar
telemetryNames: GenericScalar
mappedRawCsvFilenames: [WorkflowCSVFilenameType]
keyId: String
state: String
}
type WorkflowProductType {
idWorkflowProduct: ID!
product: ProductType!
workflow: WorkflowType!
exampleUrl: String!
created: DateTime!
lastModified: DateTime!
}
type WorkflowRelationshipType {
idWorkflowTree: ID!
workflow: WorkflowType!
workflowParent: WorkflowType!
}
enum WorkflowSearchField {
WORKFLOW_ID
WORKFLOW_NAME
WORKFLOW_REV
ATTRIBUTE
}
type WorkflowType {
idWorkflow: ID!
idUserOwner: Float!
description: String!
rev: String!
isActive: Int!
chain: GenericScalar
config: GenericScalar
dataFields: String
created: DateTime
lastModified: DateTime
name: String
summary: String
doc: String
docs: GenericScalar
aggregationConfig: GenericScalar
reports: [ReportType!]!
attributes: [AttributeValueType!]!
workflowImages: [WorkflowImageType!]!
workflowRelationshipParent: [WorkflowRelationshipType!]!
workflowRelationshipChildren: [WorkflowRelationshipType!]!
productSet: [ProductType!]!
workflowproduct: WorkflowProductType
isNested: Boolean
params: GenericScalar
mappedAttributes: GenericScalar
isUserFavourite: Boolean
documentation: [DocumentationType]
documentationUrl: String
}