File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -151,7 +151,7 @@ customize the look up with the ``lookup_field`` attribute on the ``SerializerMut
151
151
.. code :: python
152
152
153
153
from graphene_django.rest_framework.mutation import SerializerMutation
154
- from .serializers imoprt MyModelSerializer
154
+ from .serializers import MyModelSerializer
155
155
156
156
157
157
class AwesomeModelMutation (SerializerMutation ):
@@ -168,7 +168,7 @@ Use the method ``get_serializer_kwargs`` to override how updates are applied.
168
168
.. code :: python
169
169
170
170
from graphene_django.rest_framework.mutation import SerializerMutation
171
- from .serializers imoprt MyModelSerializer
171
+ from .serializers import MyModelSerializer
172
172
173
173
174
174
class AwesomeModelMutation (SerializerMutation ):
@@ -199,7 +199,7 @@ You can use relay with mutations. A Relay mutation must inherit from
199
199
200
200
.. code :: python
201
201
202
- import graphene
202
+ import graphene
203
203
from graphene import relay
204
204
from graphene_django import DjangoObjectType
205
205
from graphql_relay import from_global_id
You can’t perform that action at this time.
0 commit comments