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