mirror of
				https://github.com/datahub-project/datahub.git
				synced 2025-10-31 10:49:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			554 B
		
	
	
	
		
			GraphQL
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			554 B
		
	
	
	
		
			GraphQL
		
	
	
	
	
	
| query getDashboard($urn: String!) {
 | |
|     dashboard(urn: $urn) {
 | |
|         ...dashboardFields
 | |
|         charts: relationships(input: { types: ["Contains"], direction: OUTGOING, start: 0, count: 100 }) {
 | |
|             ...fullRelationshipResults
 | |
|         }
 | |
|         datasets: relationships(input: { types: ["Consumes"], direction: OUTGOING, start: 0, count: 100 }) {
 | |
|             ...fullRelationshipResults
 | |
|         }
 | |
|     }
 | |
| }
 | |
| 
 | |
| mutation updateDashboard($urn: String!, $input: DashboardUpdateInput!) {
 | |
|     updateDashboard(urn: $urn, input: $input) {
 | |
|         urn
 | |
|     }
 | |
| }
 | 
