mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-28 11:59:54 +00:00
26 lines
669 B
GraphQL
26 lines
669 B
GraphQL
query getMLFeature($urn: String!) {
|
|
mlFeature(urn: $urn) {
|
|
urn
|
|
type
|
|
...nonRecursiveMLFeature
|
|
privileges {
|
|
...entityPrivileges
|
|
}
|
|
featureTables: relationships(input: { types: ["Contains"], direction: INCOMING, start: 0, count: 100 }) {
|
|
...fullRelationshipResults
|
|
}
|
|
autoRenderAspects: aspects(input: { autoRenderOnly: true }) {
|
|
...autoRenderAspectFields
|
|
}
|
|
structuredProperties {
|
|
properties {
|
|
...structuredPropertiesFields
|
|
}
|
|
}
|
|
forms {
|
|
...formsFields
|
|
}
|
|
...notes
|
|
}
|
|
}
|