2021-04-21 12:06:31 -07:00
|
|
|
query getDataJob($urn: String!) {
|
|
|
|
dataJob(urn: $urn) {
|
2021-04-23 00:18:39 -07:00
|
|
|
...dataJobFields
|
|
|
|
downstreamLineage {
|
|
|
|
...downstreamRelationshipFields
|
2021-04-21 12:06:31 -07:00
|
|
|
}
|
2021-04-23 00:18:39 -07:00
|
|
|
upstreamLineage {
|
|
|
|
...upstreamRelationshipFields
|
2021-04-21 12:06:31 -07:00
|
|
|
}
|
2021-09-28 10:30:37 -07:00
|
|
|
parentFlow: relationships(input: { types: ["IsPartOf"], direction: OUTGOING, start: 0, count: 1 }) {
|
|
|
|
start
|
|
|
|
count
|
|
|
|
total
|
|
|
|
relationships {
|
|
|
|
entity {
|
|
|
|
... on DataFlow {
|
|
|
|
urn
|
|
|
|
type
|
|
|
|
orchestrator
|
|
|
|
flowId
|
|
|
|
cluster
|
|
|
|
info {
|
|
|
|
name
|
|
|
|
description
|
|
|
|
project
|
|
|
|
}
|
|
|
|
ownership {
|
|
|
|
...ownershipFields
|
|
|
|
}
|
|
|
|
globalTags {
|
|
|
|
...globalTagsFields
|
|
|
|
}
|
|
|
|
glossaryTerms {
|
|
|
|
...glossaryTerms
|
|
|
|
}
|
|
|
|
editableProperties {
|
|
|
|
description
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-04-23 00:18:39 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-22 17:30:15 -07:00
|
|
|
mutation updateDataJob($urn: String!, $input: DataJobUpdateInput!) {
|
|
|
|
updateDataJob(urn: $urn, input: $input) {
|
2021-04-23 00:18:39 -07:00
|
|
|
...dataJobFields
|
|
|
|
downstreamLineage {
|
|
|
|
...downstreamRelationshipFields
|
2021-04-21 12:06:31 -07:00
|
|
|
}
|
2021-04-23 00:18:39 -07:00
|
|
|
upstreamLineage {
|
|
|
|
...upstreamRelationshipFields
|
2021-04-21 12:06:31 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|