mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-23 17:39:59 +00:00
12 lines
381 B
GraphQL
12 lines
381 B
GraphQL
query getMLFeatureTable($urn: String!) {
|
|
mlFeatureTable(urn: $urn) {
|
|
...nonRecursiveMLFeatureTable
|
|
upstream: lineage(input: { direction: UPSTREAM, start: 0, count: 100 }) {
|
|
...partialLineageResults
|
|
}
|
|
downstream: lineage(input: { direction: DOWNSTREAM, start: 0, count: 100 }) {
|
|
...partialLineageResults
|
|
}
|
|
}
|
|
}
|