mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-23 17:39:59 +00:00

* Initial model for dataprocess instance to model datajob/jobflow runs * Fixing typos * Removing dataprocessinstance from entity registry * Add dataprocessinstance to entity registry Adding DataprocessInstancekey aspect * Fixing relationships * Updating the model * Removing EditableDataProcessInstanceProperties * Makint try number optional * Updating model * Fixing typo * visualizing job runs for a task * add pagination * show utc time on hover * add dataset side * dataprocessinstance > dataprocessinst * add cypress test * Removing jobs from DataFlowInfo.pdl as it should be part of another change if we really want it * Adding missing files * Fix moved import * Remove duplicate import * fixing yarn test * Update DatasetRunsResolver.java * Update TaskRunsResolver.java * Update DatasetRunsResolver.java * responding to comments Co-authored-by: Gabe Lyons <itsgabelyons@gmail.com> Co-authored-by: John Joyce <john@acryl.io>
34 lines
938 B
GraphQL
34 lines
938 B
GraphQL
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
|
|
}
|
|
}
|