datahub/datahub-web-react/src/graphql/mlPrimaryKey.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
}
}
}