Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/mutations.rst
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ customize the look up with the ``lookup_field`` attribute on the ``SerializerMut
.. code:: python

from graphene_django.rest_framework.mutation import SerializerMutation
from .serializers imoprt MyModelSerializer
from .serializers import MyModelSerializer


class AwesomeModelMutation(SerializerMutation):
Expand All @@ -168,7 +168,7 @@ Use the method ``get_serializer_kwargs`` to override how updates are applied.
.. code:: python

from graphene_django.rest_framework.mutation import SerializerMutation
from .serializers imoprt MyModelSerializer
from .serializers import MyModelSerializer


class AwesomeModelMutation(SerializerMutation):
Expand Down Expand Up @@ -199,7 +199,7 @@ You can use relay with mutations. A Relay mutation must inherit from

.. code:: python

import graphene
import graphene
from graphene import relay
from graphene_django import DjangoObjectType
from graphql_relay import from_global_id
Expand Down