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