mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-27 11:29:59 +00:00
26 lines
731 B
GraphQL
26 lines
731 B
GraphQL
query getMLModelGroup($urn: String!) {
|
|
mlModelGroup(urn: $urn) {
|
|
...nonRecursiveMLModelGroupFields
|
|
incoming: relationships(
|
|
input: {
|
|
types: ["DownstreamOf", "Consumes", "Produces", "TrainedBy", "MemberOf"]
|
|
direction: INCOMING
|
|
start: 0
|
|
count: 100
|
|
}
|
|
) {
|
|
...fullRelationshipResults
|
|
}
|
|
outgoing: relationships(
|
|
input: {
|
|
types: ["DownstreamOf", "Consumes", "Produces", "TrainedBy", "MemberOf"]
|
|
direction: OUTGOING
|
|
start: 0
|
|
count: 100
|
|
}
|
|
) {
|
|
...fullRelationshipResults
|
|
}
|
|
}
|
|
}
|