mirror of
				https://github.com/datahub-project/datahub.git
				synced 2025-10-31 10:49:00 +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)
 | |
| }
 | 
