mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-26 02:50:01 +00:00

* backend ml changes * updating ml model UI * more work on the UI * ml primary key joining the party * more progress on UI * making progress on lineage * finalizing UI experience * remove irrelevant test * fixing lint * fixups * add tests and fix what the issues they discovered * internal > core
32 lines
987 B
GraphQL
32 lines
987 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
|
|
}
|
|
upstream: lineage(input: { direction: UPSTREAM, start: 0, count: 100 }) {
|
|
...fullLineageResults
|
|
}
|
|
downstream: lineage(input: { direction: DOWNSTREAM, start: 0, count: 100 }) {
|
|
...fullLineageResults
|
|
}
|
|
}
|
|
}
|