mirror of
https://github.com/datahub-project/datahub.git
synced 2025-10-29 17:59:24 +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
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|