fix(ui/graphql): Fetch glossary node details when fetching glossary node children (#13307)

This commit is contained in:
Andrew Sikowitz 2025-04-23 12:50:28 -07:00 committed by GitHub
parent 1cb616cff9
commit f3a41201f2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -153,6 +153,14 @@ fragment glossaryNode on GlossaryNode {
}
... on GlossaryNode {
urn
type
properties {
name
description
}
displayProperties {
...displayPropertiesFields
}
}
}
}