mirror of
				https://github.com/datahub-project/datahub.git
				synced 2025-10-30 18:26:58 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			747 B
		
	
	
	
		
			GraphQL
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			747 B
		
	
	
	
		
			GraphQL
		
	
	
	
	
	
| query getMLModel($urn: String!) {
 | |
|     mlModel(urn: $urn) {
 | |
|         ...nonRecursiveMLModel
 | |
|         features: relationships(input: { types: ["Consumes"], direction: OUTGOING, start: 0, count: 100 }) {
 | |
|             start
 | |
|             count
 | |
|             total
 | |
|             relationships {
 | |
|                 type
 | |
|                 direction
 | |
|                 entity {
 | |
|                     ... on MLFeature {
 | |
|                         ...nonRecursiveMLFeature
 | |
|                     }
 | |
|                     ... on MLPrimaryKey {
 | |
|                         ...nonRecursiveMLPrimaryKey
 | |
|                     }
 | |
|                 }
 | |
|             }
 | |
|         }
 | |
|         autoRenderAspects: aspects(input: { autoRenderOnly: true }) {
 | |
|             ...autoRenderAspectFields
 | |
|         }
 | |
|     }
 | |
| }
 | 
