mirror of
https://github.com/datahub-project/datahub.git
synced 2025-11-04 20:58:36 +00:00
18 lines
293 B
GraphQL
18 lines
293 B
GraphQL
|
|
query getDataFlow($urn: String!) {
|
||
|
|
dataFlow(urn: $urn) {
|
||
|
|
urn
|
||
|
|
type
|
||
|
|
orchestrator
|
||
|
|
flowId
|
||
|
|
cluster
|
||
|
|
info {
|
||
|
|
name
|
||
|
|
description
|
||
|
|
project
|
||
|
|
}
|
||
|
|
ownership {
|
||
|
|
...ownershipFields
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|