mirror of
https://github.com/datahub-project/datahub.git
synced 2025-11-07 06:13:40 +00:00
9 lines
275 B
GraphQL
9 lines
275 B
GraphQL
query getMLPrimaryKey($urn: String!) {
|
|
mlPrimaryKey(urn: $urn) {
|
|
...nonRecursiveMLPrimaryKey
|
|
featureTables: relationships(input: { types: ["KeyedBy"], direction: INCOMING, start: 0, count: 100 }) {
|
|
...fullRelationshipResults
|
|
}
|
|
}
|
|
}
|