datahub/datahub-web-react/src/graphql/mlModelGroup.graphql
Hyejin Yoon ddd0d21bf9
feat(models): update mlflow-related mappers (#12263)
Co-authored-by: Shirshanka Das <shirshanka@apache.org>
Co-authored-by: RyanHolstien <RyanHolstien@users.noreply.github.com>
2025-01-13 16:57:10 -06:00

54 lines
1.3 KiB
GraphQL

query getMLModelGroup($urn: String!) {
mlModelGroup(urn: $urn) {
urn
type
properties {
name
description
created {
time
actor
}
lastModified {
time
actor
}
}
...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
}
privileges {
...entityPrivileges
}
autoRenderAspects: aspects(input: { autoRenderOnly: true }) {
...autoRenderAspectFields
}
structuredProperties {
properties {
...structuredPropertiesFields
}
}
forms {
...formsFields
}
}
}