mirror of
				https://github.com/datahub-project/datahub.git
				synced 2025-10-31 02:37:05 +00:00 
			
		
		
		
	 851e00ba9f
			
		
	
	
		851e00ba9f
		
			
		
	
	
	
	
		
			
			Co-authored-by: Dexter Lee <dexter@acryl.io> Co-authored-by: Brian <brianwebtek@gmail.com> Co-authored-by: John Joyce <john@acryl.io> Co-authored-by: Harshal Sheth <hsheth2@gmail.com>
		
			
				
	
	
		
			36 lines
		
	
	
		
			577 B
		
	
	
	
		
			GraphQL
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			577 B
		
	
	
	
		
			GraphQL
		
	
	
	
	
	
| fragment dataFlowFields on DataFlow {
 | |
|     urn
 | |
|     type
 | |
|     orchestrator
 | |
|     flowId
 | |
|     cluster
 | |
|     info {
 | |
|         name
 | |
|         description
 | |
|         project
 | |
|         externalUrl
 | |
|         customProperties {
 | |
|             key
 | |
|             value
 | |
|         }
 | |
|     }
 | |
|     ownership {
 | |
|         ...ownershipFields
 | |
|     }
 | |
|     globalTags {
 | |
|         ...globalTagsFields
 | |
|     }
 | |
| }
 | |
| 
 | |
| query getDataFlow($urn: String!) {
 | |
|     dataFlow(urn: $urn) {
 | |
|         ...dataFlowFields
 | |
|     }
 | |
| }
 | |
| 
 | |
| mutation updateDataFlow($input: DataFlowUpdateInput!) {
 | |
|     updateDataFlow(input: $input) {
 | |
|         ...dataFlowFields
 | |
|     }
 | |
| }
 |