datahub/datahub-web-react/src/graphql/glossaryTerm.graphql

22 lines
415 B
GraphQL
Raw Normal View History

query getGlossaryTerm($urn: String!) {
glossaryTerm(urn: $urn) {
urn
type
name
hierarchicalName
ownership {
...ownershipFields
}
glossaryTermInfo {
definition
termSource
sourceRef
sourceUrl
customProperties {
key
value
}
}
}
}