Gabe Lyons 779d1cf369
feat(ml model): updating view of ml model feature list (#6576)
* updating view of ml model feature list

* Update TableOfMlFeatures.tsx
2022-12-02 09:51:51 -08:00

29 lines
891 B
GraphQL

query getMLModel($urn: String!) {
mlModel(urn: $urn) {
...nonRecursiveMLModel
upstream: lineage(input: { direction: UPSTREAM, start: 0, count: 100 }) {
...partialLineageResults
}
downstream: lineage(input: { direction: DOWNSTREAM, start: 0, count: 100 }) {
...partialLineageResults
}
features: relationships(input: { types: ["Consumes"], direction: OUTGOING, start: 0, count: 100 }) {
start
count
total
relationships {
type
direction
entity {
... on MLFeature {
...nonRecursiveMLFeature
}
... on MLPrimaryKey {
...nonRecursiveMLPrimaryKey
}
}
}
}
}
}