mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-24 01:50:06 +00:00
14 lines
363 B
GraphQL
14 lines
363 B
GraphQL
query getMLFeatureTable($urn: String!) {
|
|
mlFeatureTable(urn: $urn) {
|
|
...nonRecursiveMLFeatureTable
|
|
autoRenderAspects: aspects(input: { autoRenderOnly: true }) {
|
|
...autoRenderAspectFields
|
|
}
|
|
structuredProperties {
|
|
properties {
|
|
...structuredPropertiesFields
|
|
}
|
|
}
|
|
}
|
|
}
|