From: Stein Magnus Jodal Date: Sun, 12 May 2019 09:14:14 +0000 (+0200) Subject: docs: Add missing import X-Git-Tag: 0.12.0~8^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F508%2Fhead;p=thirdparty%2Fstarlette.git docs: Add missing import --- diff --git a/docs/graphql.md b/docs/graphql.md index 58989bdf..2fb00a55 100644 --- a/docs/graphql.md +++ b/docs/graphql.md @@ -75,6 +75,7 @@ make sure to setup Graphene's AsyncioExecutor using the `executor` argument. ```python from graphql.execution.executors.asyncio import AsyncioExecutor from starlette.applications import Starlette +from starlette.graphql import GraphQLApp import graphene