mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-21 23:58:06 +00:00
39 lines
877 B
GraphQL
39 lines
877 B
GraphQL
query getGlossaryNode($urn: String!) {
|
|
glossaryNode(urn: $urn) {
|
|
urn
|
|
type
|
|
properties {
|
|
name
|
|
description
|
|
}
|
|
ownership {
|
|
...ownershipFields
|
|
}
|
|
parentNodes {
|
|
...parentNodesFields
|
|
}
|
|
children: relationships(
|
|
input: {
|
|
types: ["IsPartOf"]
|
|
direction: INCOMING
|
|
start: 0
|
|
count: 1000
|
|
}
|
|
) {
|
|
count
|
|
relationships {
|
|
direction
|
|
entity {
|
|
type
|
|
... on GlossaryNode {
|
|
...glossaryNode
|
|
}
|
|
... on GlossaryTerm {
|
|
...glossaryTerm
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|