mirror of
				https://github.com/datahub-project/datahub.git
				synced 2025-10-31 10:49:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			58 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			GraphQL
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			GraphQL
		
	
	
	
	
	
| query appConfig {
 | |
|     appConfig {
 | |
|         appVersion
 | |
|         policiesConfig {
 | |
|             enabled
 | |
|             platformPrivileges {
 | |
|                 type
 | |
|                 displayName
 | |
|                 description
 | |
|             }
 | |
|             resourcePrivileges {
 | |
|                 resourceType
 | |
|                 resourceTypeDisplayName
 | |
|                 entityType
 | |
|                 privileges {
 | |
|                     type
 | |
|                     displayName
 | |
|                     description
 | |
|                 }
 | |
|             }
 | |
|         }
 | |
|         analyticsConfig {
 | |
|             enabled
 | |
|         }
 | |
|         authConfig {
 | |
|             tokenAuthEnabled
 | |
|         }
 | |
|         identityManagementConfig {
 | |
|             enabled
 | |
|         }
 | |
|         lineageConfig {
 | |
|             supportsImpactAnalysis
 | |
|         }
 | |
|         managedIngestionConfig {
 | |
|             enabled
 | |
|         }
 | |
|         visualConfig {
 | |
|             logoUrl
 | |
|             faviconUrl
 | |
|         }
 | |
|         telemetryConfig {
 | |
|             enableThirdPartyLogging
 | |
|         }
 | |
|         testsConfig {
 | |
|             enabled
 | |
|         }
 | |
|     }
 | |
| }
 | |
| 
 | |
| query getEntityCounts($input: EntityCountInput) {
 | |
|     getEntityCounts(input: $input) {
 | |
|         counts {
 | |
|             entityType
 | |
|             count
 | |
|         }
 | |
|     }
 | |
| }
 | 
