mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-26 02:50:01 +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
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|