mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-23 17:39:59 +00:00
30 lines
579 B
GraphQL
30 lines
579 B
GraphQL
query getRootGlossaryTerms {
|
|
getRootGlossaryTerms(input: { start: 0, count: 1000 }) {
|
|
count
|
|
start
|
|
total
|
|
terms {
|
|
...childGlossaryTerm
|
|
}
|
|
}
|
|
}
|
|
|
|
query getRootGlossaryNodes {
|
|
getRootGlossaryNodes(input: { start: 0, count: 1000 }) {
|
|
count
|
|
start
|
|
total
|
|
nodes {
|
|
...glossaryNode
|
|
}
|
|
}
|
|
}
|
|
|
|
mutation updateParentNode($input: UpdateParentNodeInput!) {
|
|
updateParentNode(input: $input)
|
|
}
|
|
|
|
mutation deleteGlossaryEntity($urn: String!) {
|
|
deleteGlossaryEntity(urn: $urn)
|
|
}
|