mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-23 09:32:04 +00:00
17 lines
519 B
GraphQL
17 lines
519 B
GraphQL
query getMLPrimaryKey($urn: String!) {
|
|
mlPrimaryKey(urn: $urn) {
|
|
...nonRecursiveMLPrimaryKey
|
|
featureTables: relationships(input: { types: ["KeyedBy"], direction: INCOMING, start: 0, count: 100 }) {
|
|
...fullRelationshipResults
|
|
}
|
|
autoRenderAspects: aspects(input: { autoRenderOnly: true }) {
|
|
...autoRenderAspectFields
|
|
}
|
|
structuredProperties {
|
|
properties {
|
|
...structuredPropertiesFields
|
|
}
|
|
}
|
|
}
|
|
}
|