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
|
2025-01-29 20:42:01 -05:00
|
|
|
description
|
2022-10-14 16:40:52 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-04-30 12:46:26 -04:00
|
|
|
fragment glossaryNodeFields on GlossaryNode {
|
|
|
|
urn
|
|
|
|
type
|
|
|
|
exists
|
|
|
|
properties {
|
|
|
|
name
|
|
|
|
description
|
2025-05-15 10:54:07 -07:00
|
|
|
customProperties {
|
|
|
|
...customPropertiesFields
|
|
|
|
}
|
2025-04-30 12:46:26 -04:00
|
|
|
}
|
|
|
|
ownership {
|
|
|
|
...ownershipFields
|
|
|
|
}
|
|
|
|
parentNodes {
|
|
|
|
...parentNodesFields
|
|
|
|
}
|
|
|
|
privileges {
|
|
|
|
...entityPrivileges
|
|
|
|
}
|
|
|
|
autoRenderAspects: aspects(input: { autoRenderOnly: true }) {
|
|
|
|
...autoRenderAspectFields
|
|
|
|
}
|
|
|
|
structuredProperties {
|
2022-05-30 00:26:07 -04:00
|
|
|
properties {
|
2025-04-30 12:46:26 -04:00
|
|
|
...structuredPropertiesFields
|
2024-01-23 16:30:02 -05:00
|
|
|
}
|
2025-04-30 12:46:26 -04:00
|
|
|
}
|
|
|
|
forms {
|
|
|
|
...formsFields
|
|
|
|
}
|
|
|
|
childrenCount {
|
|
|
|
termsCount
|
|
|
|
nodesCount
|
|
|
|
}
|
|
|
|
displayProperties {
|
|
|
|
...displayPropertiesFields
|
|
|
|
}
|
|
|
|
...notes
|
|
|
|
}
|
|
|
|
|
|
|
|
query getGlossaryNode($urn: String!) {
|
|
|
|
glossaryNode(urn: $urn) {
|
|
|
|
...glossaryNodeFields
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
query getGlossaryNodeWithChildren($urn: String!) {
|
|
|
|
glossaryNode(urn: $urn) {
|
|
|
|
...glossaryNodeFields
|
|
|
|
children: relationships(input: { types: ["IsPartOf"], direction: INCOMING, start: 0, count: 1000 }) {
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|