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 {
|
2024-03-20 15:25:36 -04:00
|
|
|
...entityPrivileges
|
2022-11-03 16:06:40 -04:00
|
|
|
}
|
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
|
|
|
|
}
|
|
|
|
}
|
2024-02-13 15:02:52 -05:00
|
|
|
forms {
|
|
|
|
...formsFields
|
|
|
|
}
|
2024-06-21 11:03:56 -07:00
|
|
|
children: relationships(input: { types: ["IsPartOf"], direction: INCOMING, start: 0, count: 10000 }) {
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|