diff --git a/docs/graphql.md b/docs/graphql.md index 19188588..7de1ff93 100644 --- a/docs/graphql.md +++ b/docs/graphql.md @@ -51,5 +51,5 @@ class Query(graphene.ObjectType): app = Starlette() # We're using `executor=AsyncioExecutor()` here. -app.add_route('/', GraphQLApp(schema=graphene.Schema(query=Query, executor=AsyncioExecutor()))) +app.add_route('/', GraphQLApp(schema=graphene.Schema(query=Query), executor=AsyncioExecutor())) ``` diff --git a/setup.py b/setup.py index eff987d0..1449700d 100644 --- a/setup.py +++ b/setup.py @@ -48,6 +48,7 @@ setup( 'aiofiles', 'graphene', 'itsdangerous', + 'jinja2', 'python-multipart', 'pyyaml', 'requests',