2021-07-28 20:39:05 -07:00
|
|
|
query getMLModelGroup($urn: String!) {
|
|
|
|
mlModelGroup(urn: $urn) {
|
|
|
|
...nonRecursiveMLModelGroupFields
|
2021-10-22 15:46:46 -07:00
|
|
|
incoming: relationships(
|
|
|
|
input: {
|
|
|
|
types: ["DownstreamOf", "Consumes", "Produces", "TrainedBy", "MemberOf"]
|
|
|
|
direction: INCOMING
|
|
|
|
start: 0
|
|
|
|
count: 100
|
|
|
|
}
|
|
|
|
) {
|
|
|
|
...fullRelationshipResults
|
2021-07-28 20:39:05 -07:00
|
|
|
}
|
2021-10-22 15:46:46 -07:00
|
|
|
outgoing: relationships(
|
|
|
|
input: {
|
|
|
|
types: ["DownstreamOf", "Consumes", "Produces", "TrainedBy", "MemberOf"]
|
|
|
|
direction: OUTGOING
|
|
|
|
start: 0
|
|
|
|
count: 100
|
|
|
|
}
|
|
|
|
) {
|
|
|
|
...fullRelationshipResults
|
2021-07-28 20:39:05 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|