Fix Mutations Relay example imports

Per comment here: https://github.com/graphql-python/graphene-django/pull/657#issuecomment-499618785
This commit is contained in:
Richard Sween 2019-06-06 13:53:16 -05:00 committed by GitHub
parent fc49a50cc3
commit d06217d203
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -199,7 +199,9 @@ You can use relay with mutations. A Relay mutation must inherit from
.. code:: python
import graphene import relay, DjangoObjectType
import graphene
from graphene import relay
from graphene_django import DjangoObjectType
from graphql_relay import from_global_id
from .queries import QuestionType