mirror of
https://github.com/graphql-python/graphene.git
synced 2024-11-11 12:16:58 +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
|