87 lines
2.0 KiB
GraphQL
Raw Normal View History

fragment dataFlowFields on DataFlow {
urn
type
orchestrator
flowId
cluster
info {
name
description
project
externalUrl
customProperties {
key
value
}
}
editableProperties {
description
}
ownership {
...ownershipFields
}
globalTags {
...globalTagsFields
}
}
query getDataFlow($urn: String!) {
dataFlow(urn: $urn) {
...dataFlowFields
dataJobs {
entities {
entity {
urn
type
... on DataJob {
urn
type
jobId
ownership {
...ownershipFields
}
info {
name
description
externalUrl
customProperties {
key
value
}
}
editableProperties {
description
}
globalTags {
...globalTagsFields
}
inputOutput {
inputDatajobs {
urn
}
}
}
}
}
}
}
}
mutation updateDataFlow($urn: String!, $input: DataFlowUpdateInput!) {
updateDataFlow(urn: $urn, input: $input) {
...dataFlowFields
dataJobs {
entities {
entity {
urn
type
... on DataJob {
...dataJobFields
...shallowLineageFields
}
}
}
}
}
}