mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-23 17:39:59 +00:00
9 lines
267 B
GraphQL
9 lines
267 B
GraphQL
query getMLFeature($urn: String!) {
|
|
mlFeature(urn: $urn) {
|
|
...nonRecursiveMLFeature
|
|
featureTables: relationships(input: { types: ["Contains"], direction: INCOMING, start: 0, count: 100 }) {
|
|
...fullRelationshipResults
|
|
}
|
|
}
|
|
}
|