mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-26 02:50:01 +00:00
30 lines
574 B
GraphQL
30 lines
574 B
GraphQL
![]() |
query getRootGlossaryTerms {
|
||
|
getRootGlossaryTerms(input: { start: 0, count: 1000 }) {
|
||
|
count
|
||
|
start
|
||
|
total
|
||
|
terms {
|
||
|
...glossaryTerm
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
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)
|
||
|
}
|