mirror of
				https://github.com/datahub-project/datahub.git
				synced 2025-11-04 12:51:23 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			285 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			285 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
if [ -f "combined.graphql" ] ; then
 | 
						|
    rm "combined.graphql"
 | 
						|
fi
 | 
						|
touch combined.graphql
 | 
						|
echo "Generating combined GraphQL schema..."
 | 
						|
echo "# Auto Generated During Docs Build" >> combined.graphql
 | 
						|
cat ../../datahub-graphql-core/src/main/resources/*.graphql >> combined.graphql
 |