mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-23 17:39:59 +00:00
26 lines
511 B
GraphQL
26 lines
511 B
GraphQL
![]() |
query getDataJob($urn: String!) {
|
||
|
dataJob(urn: $urn) {
|
||
|
urn
|
||
|
type
|
||
|
dataFlow {
|
||
|
...nonRecursiveDataFlowFields
|
||
|
}
|
||
|
jobId
|
||
|
ownership {
|
||
|
...ownershipFields
|
||
|
}
|
||
|
inputOutput {
|
||
|
inputDatasets {
|
||
|
...nonRecursiveDatasetFields
|
||
|
}
|
||
|
outputDatasets {
|
||
|
...nonRecursiveDatasetFields
|
||
|
}
|
||
|
}
|
||
|
info {
|
||
|
name
|
||
|
description
|
||
|
}
|
||
|
}
|
||
|
}
|