fixes docs to include ObjectType in root query

This commit is contained in:
Joe Larson 2016-10-03 13:23:22 -06:00
parent f6684ca92d
commit d1f2863374

View File

@ -149,7 +149,7 @@ Create the parent project-level ``cookbook/schema.py``:
import cookbook.ingredients.schema
class Query(cookbook.ingredients.schema.Query):
class Query(cookbook.ingredients.schema.Query, graphene.ObjectType):
# This class will inherit from multiple Queries
# as we begin to add more apps to our project
pass