From d0b342981e8b3aab204354136e41450af03443cc Mon Sep 17 00:00:00 2001 From: Jordan Eremieff Date: Sat, 10 Nov 2018 19:02:51 +1100 Subject: [PATCH 1/2] Move arg (#210) --- docs/graphql.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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())) ``` From 5fc8b394e28a652d0450ae1fcca000af90ef8e7d Mon Sep 17 00:00:00 2001 From: Jesse Braham Date: Sun, 11 Nov 2018 01:54:21 +0000 Subject: [PATCH 2/2] Include Jinja2 in the [full] optional package (#213) --- setup.py | 1 + 1 file changed, 1 insertion(+) 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',