mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-03 06:47:55 +00:00
12 lines
258 B
GraphQL
12 lines
258 B
GraphQL
query getMLModel($urn: String!) {
|
|
mlModel(urn: $urn) {
|
|
...nonRecursiveMLModel
|
|
downstreamLineage {
|
|
...downstreamRelationshipFields
|
|
}
|
|
upstreamLineage {
|
|
...upstreamRelationshipFields
|
|
}
|
|
}
|
|
}
|