mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-23 09:32:04 +00:00
15 lines
537 B
GraphQL
15 lines
537 B
GraphQL
query getMLPrimaryKey($urn: String!) {
|
|
mlPrimaryKey(urn: $urn) {
|
|
...nonRecursiveMLPrimaryKey
|
|
upstream: lineage(input: { direction: UPSTREAM, start: 0, count: 100 }) {
|
|
...partialLineageResults
|
|
}
|
|
downstream: lineage(input: { direction: DOWNSTREAM, start: 0, count: 100 }) {
|
|
...partialLineageResults
|
|
}
|
|
featureTables: relationships(input: { types: ["KeyedBy"], direction: INCOMING, start: 0, count: 100 }) {
|
|
...fullRelationshipResults
|
|
}
|
|
}
|
|
}
|