mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-30 04:45:28 +00:00
56 lines
1.4 KiB
GraphQL
56 lines
1.4 KiB
GraphQL
query getMLModelGroup($urn: String!) {
|
|
mlModelGroup(urn: $urn) {
|
|
urn
|
|
type
|
|
properties {
|
|
name
|
|
description
|
|
created {
|
|
time
|
|
actor
|
|
}
|
|
lastModified {
|
|
time
|
|
actor
|
|
}
|
|
externalUrl
|
|
}
|
|
...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
|
|
}
|
|
...notes
|
|
}
|
|
}
|