2021-04-23 00:18:39 -07:00
|
|
|
fragment dataFlowFields on DataFlow {
|
|
|
|
urn
|
|
|
|
type
|
|
|
|
orchestrator
|
|
|
|
flowId
|
|
|
|
cluster
|
2022-01-25 21:03:31 -06:00
|
|
|
platform {
|
|
|
|
...platformFields
|
|
|
|
}
|
2021-11-08 16:24:50 -08:00
|
|
|
properties {
|
2021-04-23 00:18:39 -07:00
|
|
|
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-09-28 10:30:37 -07:00
|
|
|
institutionalMemory {
|
2022-02-02 13:51:39 -08:00
|
|
|
...institutionalMemoryFields
|
2021-09-28 10:30:37 -07:00
|
|
|
}
|
|
|
|
glossaryTerms {
|
|
|
|
...glossaryTerms
|
|
|
|
}
|
2022-01-27 22:02:41 -08:00
|
|
|
domain {
|
|
|
|
...entityDomain
|
|
|
|
}
|
2022-03-15 11:17:13 -07:00
|
|
|
status {
|
|
|
|
removed
|
|
|
|
}
|
2022-04-07 19:17:24 -07:00
|
|
|
deprecation {
|
|
|
|
...deprecationFields
|
|
|
|
}
|
2022-05-09 17:28:50 -04:00
|
|
|
dataPlatformInstance {
|
|
|
|
...dataPlatformInstanceFields
|
|
|
|
}
|
2021-04-23 00:18:39 -07:00
|
|
|
}
|
|
|
|
|
2021-04-21 12:06:31 -07:00
|
|
|
query getDataFlow($urn: String!) {
|
|
|
|
dataFlow(urn: $urn) {
|
2021-04-23 00:18:39 -07:00
|
|
|
...dataFlowFields
|
2022-03-04 16:10:25 -08:00
|
|
|
upstream: lineage(input: { direction: UPSTREAM, start: 0, count: 100 }) {
|
2022-06-21 10:30:40 -04:00
|
|
|
...partialLineageResults
|
2022-03-04 16:10:25 -08:00
|
|
|
}
|
|
|
|
downstream: lineage(input: { direction: DOWNSTREAM, start: 0, count: 100 }) {
|
2022-06-21 10:30:40 -04:00
|
|
|
...partialLineageResults
|
2022-03-04 16:10:25 -08:00
|
|
|
}
|
2021-09-28 10:30:37 -07:00
|
|
|
childJobs: relationships(input: { types: ["IsPartOf"], direction: INCOMING, start: 0, count: 100 }) {
|
|
|
|
start
|
|
|
|
count
|
|
|
|
total
|
|
|
|
relationships {
|
2021-05-18 21:25:42 -07:00
|
|
|
entity {
|
|
|
|
... on DataJob {
|
2021-09-01 11:50:20 -07:00
|
|
|
urn
|
|
|
|
type
|
|
|
|
jobId
|
2021-09-28 10:30:37 -07:00
|
|
|
dataFlow {
|
|
|
|
urn
|
|
|
|
type
|
|
|
|
orchestrator
|
2022-07-05 12:19:13 -04:00
|
|
|
platform {
|
|
|
|
...platformFields
|
|
|
|
}
|
2021-09-28 10:30:37 -07:00
|
|
|
}
|
2021-09-01 11:50:20 -07:00
|
|
|
ownership {
|
|
|
|
...ownershipFields
|
|
|
|
}
|
2021-11-08 16:24:50 -08:00
|
|
|
properties {
|
2021-09-01 11:50:20 -07:00
|
|
|
name
|
|
|
|
description
|
|
|
|
}
|
|
|
|
editableProperties {
|
|
|
|
description
|
|
|
|
}
|
|
|
|
globalTags {
|
|
|
|
...globalTagsFields
|
|
|
|
}
|
2021-09-28 10:30:37 -07:00
|
|
|
glossaryTerms {
|
|
|
|
...glossaryTerms
|
2021-09-01 11:50:20 -07:00
|
|
|
}
|
2022-04-07 19:17:24 -07:00
|
|
|
deprecation {
|
|
|
|
...deprecationFields
|
|
|
|
}
|
2021-05-18 21:25:42 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-04-23 00:18:39 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-22 17:30:15 -07:00
|
|
|
mutation updateDataFlow($urn: String!, $input: DataFlowUpdateInput!) {
|
|
|
|
updateDataFlow(urn: $urn, input: $input) {
|
2021-10-22 15:46:46 -07:00
|
|
|
urn
|
2021-04-21 12:06:31 -07:00
|
|
|
}
|
|
|
|
}
|