2021-07-28 20:39:05 -07:00
|
|
|
query getMLModel($urn: String!) {
|
|
|
|
mlModel(urn: $urn) {
|
|
|
|
...nonRecursiveMLModel
|
2022-04-12 22:42:12 -07:00
|
|
|
features: relationships(input: { types: ["Consumes"], direction: OUTGOING, start: 0, count: 100 }) {
|
2022-12-02 09:51:51 -08:00
|
|
|
start
|
|
|
|
count
|
|
|
|
total
|
|
|
|
relationships {
|
|
|
|
type
|
|
|
|
direction
|
|
|
|
entity {
|
|
|
|
... on MLFeature {
|
|
|
|
...nonRecursiveMLFeature
|
|
|
|
}
|
|
|
|
... on MLPrimaryKey {
|
|
|
|
...nonRecursiveMLPrimaryKey
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-07-28 20:39:05 -07:00
|
|
|
}
|
2024-01-23 16:30:02 -05:00
|
|
|
autoRenderAspects: aspects(input: { autoRenderOnly: true }) {
|
|
|
|
...autoRenderAspectFields
|
|
|
|
}
|
2021-07-28 20:39:05 -07:00
|
|
|
}
|
|
|
|
}
|