2022-05-30 00:26:07 -04:00
|
|
|
query getRootGlossaryTerms {
|
|
|
|
|
getRootGlossaryTerms(input: { start: 0, count: 1000 }) {
|
|
|
|
|
count
|
|
|
|
|
start
|
|
|
|
|
total
|
|
|
|
|
terms {
|
2022-10-17 15:54:23 -04:00
|
|
|
...childGlossaryTerm
|
2022-05-30 00:26:07 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
query getRootGlossaryNodes {
|
|
|
|
|
getRootGlossaryNodes(input: { start: 0, count: 1000 }) {
|
|
|
|
|
count
|
|
|
|
|
start
|
|
|
|
|
total
|
|
|
|
|
nodes {
|
2025-01-29 20:42:01 -05:00
|
|
|
...rootGlossaryNodeWithFourLayers
|
2022-05-30 00:26:07 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-09-05 09:35:35 -04:00
|
|
|
query getRelatedTerms($urn: String!) {
|
|
|
|
|
glossaryTerm(urn: $urn) {
|
|
|
|
|
urn
|
|
|
|
|
type
|
|
|
|
|
exists
|
|
|
|
|
name
|
|
|
|
|
hierarchicalName
|
|
|
|
|
isRelatedTerms: relationships(input: { types: ["IsA"], direction: OUTGOING, start: 0, count: 10 }) {
|
|
|
|
|
start
|
|
|
|
|
count
|
|
|
|
|
total
|
|
|
|
|
relationships {
|
|
|
|
|
entity {
|
|
|
|
|
...autoCompleteFields
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
hasRelatedTerms: relationships(input: { types: ["HasA"], direction: OUTGOING, start: 0, count: 10 }) {
|
|
|
|
|
start
|
|
|
|
|
count
|
|
|
|
|
total
|
|
|
|
|
relationships {
|
|
|
|
|
entity {
|
|
|
|
|
...autoCompleteFields
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
isAChildren: relationships(input: { types: ["IsA"], direction: INCOMING, start: 0, count: 10 }) {
|
|
|
|
|
start
|
|
|
|
|
count
|
|
|
|
|
total
|
|
|
|
|
relationships {
|
|
|
|
|
entity {
|
|
|
|
|
...autoCompleteFields
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
containedBy: relationships(input: { types: ["HasA"], direction: INCOMING, start: 0, count: 10 }) {
|
|
|
|
|
start
|
|
|
|
|
count
|
|
|
|
|
total
|
|
|
|
|
relationships {
|
|
|
|
|
entity {
|
|
|
|
|
...autoCompleteFields
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-05-30 00:26:07 -04:00
|
|
|
mutation updateParentNode($input: UpdateParentNodeInput!) {
|
|
|
|
|
updateParentNode(input: $input)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
mutation deleteGlossaryEntity($urn: String!) {
|
|
|
|
|
deleteGlossaryEntity(urn: $urn)
|
|
|
|
|
}
|