mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-23 17:39:59 +00:00
23 lines
629 B
GraphQL
23 lines
629 B
GraphQL
query getMLModel($urn: String!) {
|
|
mlModel(urn: $urn) {
|
|
...nonRecursiveMLModel
|
|
features: relationships(input: { types: ["Consumes"], direction: OUTGOING, start: 0, count: 100 }) {
|
|
start
|
|
count
|
|
total
|
|
relationships {
|
|
type
|
|
direction
|
|
entity {
|
|
... on MLFeature {
|
|
...nonRecursiveMLFeature
|
|
}
|
|
... on MLPrimaryKey {
|
|
...nonRecursiveMLPrimaryKey
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|