57 lines
1.6 KiB
GraphQL
Raw Normal View History

query getDataJob($urn: String!) {
dataJob(urn: $urn) {
...dataJobFields
downstreamLineage {
...downstreamRelationshipFields
}
upstreamLineage {
...upstreamRelationshipFields
}
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
}
}
}
}
}
}
}
mutation updateDataJob($urn: String!, $input: DataJobUpdateInput!) {
updateDataJob(urn: $urn, input: $input) {
...dataJobFields
downstreamLineage {
...downstreamRelationshipFields
}
upstreamLineage {
...upstreamRelationshipFields
}
}
}