mirror of
				https://github.com/datahub-project/datahub.git
				synced 2025-10-31 02:37:05 +00:00 
			
		
		
		
	 59f8c9b4fe
			
		
	
	
		59f8c9b4fe
		
			
		
	
	
	
	
		
			
			* adding new wip docs * update to docs-website * update to get started link * lint cleanup * lint cleanup
		
			
				
	
	
		
			14 lines
		
	
	
		
			765 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			765 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| rm combined.graphql
 | |
| touch combined.graphql
 | |
| echo "Generating combined GraphQL schema..."
 | |
| echo "# Auto Generated During Docs Build" >> combined.graphql
 | |
| cat ../../datahub-graphql-core/src/main/resources/entity.graphql >> combined.graphql
 | |
| cat ../../datahub-graphql-core/src/main/resources/search.graphql >> combined.graphql
 | |
| cat ../../datahub-graphql-core/src/main/resources/app.graphql >> combined.graphql
 | |
| cat ../../datahub-graphql-core/src/main/resources/recommendation.graphql >> combined.graphql
 | |
| cat ../../datahub-graphql-core/src/main/resources/actions.graphql >> combined.graphql
 | |
| cat ../../datahub-graphql-core/src/main/resources/constraints.graphql >> combined.graphql
 | |
| cat ../../datahub-graphql-core/src/main/resources/auth.graphql >> combined.graphql
 | |
| 
 |