mirror of
				https://github.com/graphql-python/graphene-django.git
				synced 2025-10-31 16:07:36 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			351 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			351 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| import cookbook.ingredients.schema
 | |
| import cookbook.recipes.schema
 | |
| import graphene
 | |
| 
 | |
| from graphene_django.debug import DjangoDebug
 | |
| 
 | |
| 
 | |
| class Query(cookbook.ingredients.schema.Query,
 | |
|             cookbook.recipes.schema.Query,
 | |
|             graphene.ObjectType):
 | |
|     debug = graphene.Field(DjangoDebug, name='__debug')
 | |
| 
 | |
| 
 | |
| schema = graphene.Schema(query=Query)
 |