mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-29 12:30:07 +00:00

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>
36 lines
577 B
GraphQL
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
|
|
}
|
|
}
|