Gabe Lyons 851e00ba9f
feat(lineage): implement support for datasets, charts and dashboards downstream lineage fetching in a generic way (#2397)
Co-authored-by: Dexter Lee <dexter@acryl.io>
Co-authored-by: Brian <brianwebtek@gmail.com>
Co-authored-by: John Joyce <john@acryl.io>
Co-authored-by: Harshal Sheth <hsheth2@gmail.com>
2021-04-23 00:18:39 -07:00

36 lines
577 B
GraphQL

fragment dataFlowFields on DataFlow {
urn
type
orchestrator
flowId
cluster
info {
name
description
project
externalUrl
customProperties {
key
value
}
}
ownership {
...ownershipFields
}
globalTags {
...globalTagsFields
}
}
query getDataFlow($urn: String!) {
dataFlow(urn: $urn) {
...dataFlowFields
}
}
mutation updateDataFlow($input: DataFlowUpdateInput!) {
updateDataFlow(input: $input) {
...dataFlowFields
}
}