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
151151.. code :: python
152152
153153 from graphene_django.rest_framework.mutation import SerializerMutation
154- from .serializers imoprt MyModelSerializer
154+ from .serializers import MyModelSerializer
155155
156156
157157 class AwesomeModelMutation (SerializerMutation ):
@@ -168,7 +168,7 @@ Use the method ``get_serializer_kwargs`` to override how updates are applied.
168168.. code :: python
169169
170170 from graphene_django.rest_framework.mutation import SerializerMutation
171- from .serializers imoprt MyModelSerializer
171+ from .serializers import MyModelSerializer
172172
173173
174174 class AwesomeModelMutation (SerializerMutation ):
@@ -199,7 +199,7 @@ You can use relay with mutations. A Relay mutation must inherit from
199199
200200.. code :: python
201201
202- import graphene
202+ import graphene
203203 from graphene import relay
204204 from graphene_django import DjangoObjectType
205205 from graphql_relay import from_global_id
You can’t perform that action at this time.
0 commit comments