mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-21 08:32:05 +00:00
25 lines
660 B
GraphQL
25 lines
660 B
GraphQL
query getMLPrimaryKey($urn: String!) {
|
|
mlPrimaryKey(urn: $urn) {
|
|
urn
|
|
type
|
|
...nonRecursiveMLPrimaryKey
|
|
privileges {
|
|
...entityPrivileges
|
|
}
|
|
featureTables: relationships(input: { types: ["KeyedBy"], direction: INCOMING, start: 0, count: 100 }) {
|
|
...fullRelationshipResults
|
|
}
|
|
autoRenderAspects: aspects(input: { autoRenderOnly: true }) {
|
|
...autoRenderAspectFields
|
|
}
|
|
structuredProperties {
|
|
properties {
|
|
...structuredPropertiesFields
|
|
}
|
|
}
|
|
forms {
|
|
...formsFields
|
|
}
|
|
}
|
|
}
|