2021-07-21 02:42:21 +08:00
|
|
|
query getMLPrimaryKey($urn: String!) {
|
|
|
|
mlPrimaryKey(urn: $urn) {
|
|
|
|
...nonRecursiveMLPrimaryKey
|
2022-04-12 22:42:12 -07:00
|
|
|
upstream: lineage(input: { direction: UPSTREAM, start: 0, count: 100 }) {
|
2022-06-21 10:30:40 -04:00
|
|
|
...partialLineageResults
|
2022-04-12 22:42:12 -07:00
|
|
|
}
|
|
|
|
downstream: lineage(input: { direction: DOWNSTREAM, start: 0, count: 100 }) {
|
2022-06-21 10:30:40 -04:00
|
|
|
...partialLineageResults
|
2022-04-12 22:42:12 -07:00
|
|
|
}
|
|
|
|
featureTables: relationships(input: { types: ["KeyedBy"], direction: INCOMING, start: 0, count: 100 }) {
|
|
|
|
...fullRelationshipResults
|
|
|
|
}
|
2021-07-21 02:42:21 +08:00
|
|
|
}
|
|
|
|
}
|