mirror of
				https://github.com/graphql-python/graphene.git
				synced 2025-11-04 09:57:41 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			181 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			181 B
		
	
	
	
		
			Python
		
	
	
	
	
	
import cookbook.ingredients.schema
 | 
						|
import graphene
 | 
						|
 | 
						|
 | 
						|
class Query(cookbook.ingredients.schema.Query):
 | 
						|
    pass
 | 
						|
 | 
						|
schema = graphene.Schema(name='Cookbook Schema')
 | 
						|
schema.query = Query
 |