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
|
2023-01-27 17:36:01 -05:00
|
|
|
exists
|
2022-05-30 00:26:07 -04:00
|
|
|
properties {
|
|
|
|
name
|
|
|
|
description
|
|
|
|
}
|
|
|
|
ownership {
|
|
|
|
...ownershipFields
|
|
|
|
}
|
|
|
|
parentNodes {
|
|
|
|
...parentNodesFields
|
|
|
|
}
|
2022-11-03 16:06:40 -04:00
|
|
|
privileges {
|
|
|
|
canManageEntity
|
|
|
|
canManageChildren
|
|
|
|
}
|
2024-01-23 16:30:02 -05:00
|
|
|
autoRenderAspects: aspects(input: { autoRenderOnly: true }) {
|
|
|
|
...autoRenderAspectFields
|
|
|
|
}
|
2024-02-08 12:21:05 -05:00
|
|
|
structuredProperties {
|
|
|
|
properties {
|
|
|
|
...structuredPropertiesFields
|
|
|
|
}
|
|
|
|
}
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|