mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-04 07:18:02 +00:00
23 lines
521 B
GraphQL
23 lines
521 B
GraphQL
query getMLFeatureTable($urn: String!) {
|
|
mlFeatureTable(urn: $urn) {
|
|
urn
|
|
type
|
|
...nonRecursiveMLFeatureTable
|
|
privileges {
|
|
...entityPrivileges
|
|
}
|
|
autoRenderAspects: aspects(input: { autoRenderOnly: true }) {
|
|
...autoRenderAspectFields
|
|
}
|
|
structuredProperties {
|
|
properties {
|
|
...structuredPropertiesFields
|
|
}
|
|
}
|
|
forms {
|
|
...formsFields
|
|
}
|
|
...notes
|
|
}
|
|
}
|