2022-10-14 16:40:52 -04:00
|
|
|
fragment childGlossaryTerm on GlossaryTerm {
|
2022-10-17 15:54:23 -04:00
|
|
|
urn
|
|
|
|
type
|
2022-10-14 16:40:52 -04:00
|
|
|
name
|
|
|
|
hierarchicalName
|
|
|
|
properties {
|
|
|
|
name
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-30 00:26:07 -04:00
|
|
|
query getGlossaryNode($urn: String!) {
|
|
|
|
glossaryNode(urn: $urn) {
|
|
|
|
urn
|
|
|
|
type
|
|
|
|
properties {
|
|
|
|
name
|
|
|
|
description
|
|
|
|
}
|
|
|
|
ownership {
|
|
|
|
...ownershipFields
|
|
|
|
}
|
|
|
|
parentNodes {
|
|
|
|
...parentNodesFields
|
|
|
|
}
|
2022-11-03 16:06:40 -04:00
|
|
|
privileges {
|
|
|
|
canManageEntity
|
|
|
|
canManageChildren
|
|
|
|
}
|
2022-05-30 00:26:07 -04:00
|
|
|
children: relationships(
|
|
|
|
input: {
|
|
|
|
types: ["IsPartOf"]
|
|
|
|
direction: INCOMING
|
|
|
|
start: 0
|
2022-10-14 16:40:52 -04:00
|
|
|
count: 10000
|
2022-05-30 00:26:07 -04:00
|
|
|
}
|
|
|
|
) {
|
2022-11-01 17:35:29 -04:00
|
|
|
total
|
2022-05-30 00:26:07 -04:00
|
|
|
relationships {
|
|
|
|
direction
|
|
|
|
entity {
|
|
|
|
type
|
2022-10-14 16:40:52 -04:00
|
|
|
urn
|
2022-05-30 00:26:07 -04:00
|
|
|
... on GlossaryNode {
|
|
|
|
...glossaryNode
|
|
|
|
}
|
|
|
|
... on GlossaryTerm {
|
2022-10-14 16:40:52 -04:00
|
|
|
...childGlossaryTerm
|
2022-05-30 00:26:07 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|