forked from datahub-project/datahub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdataProcess.graphql
33 lines (33 loc) · 938 Bytes
/
dataProcess.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
fragment runResults on DataProcessInstanceResult {
count
start
total
runs {
urn
type
created {
time
actor
}
name
state(startTimeMillis: null, endTimeMillis: null, limit: 1) {
status
attempt
result {
resultType
nativeResultType
}
timestampMillis
}
inputs: relationships(input: { types: ["Consumes"], direction: OUTGOING, start: 0, count: 20 }) {
...fullRelationshipResults
}
outputs: relationships(input: { types: ["Produces"], direction: OUTGOING, start: 0, count: 20 }) {
...fullRelationshipResults
}
parentTemplate: relationships(input: { types: ["InstanceOf"], direction: OUTGOING, start: 0, count: 1 }) {
...fullRelationshipResults
}
externalUrl
}
}