graphene/examples/cookbook_django/cookbook/schema.py

10 lines
181 B
Python
Raw Normal View History

import cookbook.ingredients.schema
2016-01-02 23:19:15 +03:00
import graphene
class Query(cookbook.ingredients.schema.Query):
pass
schema = graphene.Schema(name='Cookbook Schema')
schema.query = Query