mirror of
https://github.com/datahub-project/datahub.git
synced 2025-11-04 20:58:36 +00:00
12 lines
258 B
GraphQL
12 lines
258 B
GraphQL
|
|
query getMLModel($urn: String!) {
|
||
|
|
mlModel(urn: $urn) {
|
||
|
|
...nonRecursiveMLModel
|
||
|
|
downstreamLineage {
|
||
|
|
...downstreamRelationshipFields
|
||
|
|
}
|
||
|
|
upstreamLineage {
|
||
|
|
...upstreamRelationshipFields
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|