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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mutation updateParentNode($input: UpdateParentNodeInput!) {
|
|
|
|
updateParentNode(input: $input)
|
|
|
|
}
|
|
|
|
|
|
|
|
mutation deleteGlossaryEntity($urn: String!) {
|
|
|
|
deleteGlossaryEntity(urn: $urn)
|
|
|
|
}
|