mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-01 05:47:17 +00:00
21 lines
390 B
GraphQL
21 lines
390 B
GraphQL
query getGlossaryTerm($urn: String!) {
|
|
glossaryTerm(urn: $urn) {
|
|
urn
|
|
type
|
|
name
|
|
ownership {
|
|
...ownershipFields
|
|
}
|
|
glossaryTermInfo {
|
|
definition
|
|
termSource
|
|
sourceRef
|
|
sourceUrl
|
|
customProperties {
|
|
key
|
|
value
|
|
}
|
|
}
|
|
}
|
|
}
|