2021-04-23 00:18:39 -07:00
|
|
|
fragment dataFlowFields on DataFlow {
|
|
|
|
urn
|
|
|
|
type
|
|
|
|
orchestrator
|
|
|
|
flowId
|
|
|
|
cluster
|
|
|
|
info {
|
|
|
|
name
|
|
|
|
description
|
|
|
|
project
|
|
|
|
externalUrl
|
|
|
|
customProperties {
|
|
|
|
key
|
|
|
|
value
|
|
|
|
}
|
|
|
|
}
|
2021-06-17 06:48:27 +08:00
|
|
|
editableProperties {
|
|
|
|
description
|
|
|
|
}
|
2021-04-23 00:18:39 -07:00
|
|
|
ownership {
|
|
|
|
...ownershipFields
|
|
|
|
}
|
|
|
|
globalTags {
|
|
|
|
...globalTagsFields
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-21 12:06:31 -07:00
|
|
|
query getDataFlow($urn: String!) {
|
|
|
|
dataFlow(urn: $urn) {
|
2021-04-23 00:18:39 -07:00
|
|
|
...dataFlowFields
|
2021-05-18 21:25:42 -07:00
|
|
|
dataJobs {
|
|
|
|
entities {
|
|
|
|
entity {
|
|
|
|
urn
|
|
|
|
type
|
|
|
|
... on DataJob {
|
2021-09-01 11:50:20 -07:00
|
|
|
urn
|
|
|
|
type
|
|
|
|
jobId
|
|
|
|
ownership {
|
|
|
|
...ownershipFields
|
|
|
|
}
|
|
|
|
info {
|
|
|
|
name
|
|
|
|
description
|
|
|
|
externalUrl
|
|
|
|
customProperties {
|
|
|
|
key
|
|
|
|
value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
editableProperties {
|
|
|
|
description
|
|
|
|
}
|
|
|
|
globalTags {
|
|
|
|
...globalTagsFields
|
|
|
|
}
|
|
|
|
inputOutput {
|
|
|
|
inputDatajobs {
|
|
|
|
urn
|
|
|
|
}
|
|
|
|
}
|
2021-05-18 21:25:42 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-04-23 00:18:39 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mutation updateDataFlow($input: DataFlowUpdateInput!) {
|
|
|
|
updateDataFlow(input: $input) {
|
|
|
|
...dataFlowFields
|
2021-06-03 13:24:33 -07:00
|
|
|
dataJobs {
|
|
|
|
entities {
|
|
|
|
entity {
|
|
|
|
urn
|
|
|
|
type
|
|
|
|
... on DataJob {
|
|
|
|
...dataJobFields
|
|
|
|
...shallowLineageFields
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-04-21 12:06:31 -07:00
|
|
|
}
|
|
|
|
}
|