From 59da509bfb46d76f13c552551409bb1d4abe5758 Mon Sep 17 00:00:00 2001 From: B4rtware <34386047+B4rtware@users.noreply.github.com> Date: Wed, 8 Jan 2020 13:36:52 +0100 Subject: [PATCH] fix add missing import --- graphene_django/rest_framework/mutation.py | 1 + 1 file changed, 1 insertion(+) diff --git a/graphene_django/rest_framework/mutation.py b/graphene_django/rest_framework/mutation.py index f9b074d..8985dfe 100644 --- a/graphene_django/rest_framework/mutation.py +++ b/graphene_django/rest_framework/mutation.py @@ -1,6 +1,7 @@ from collections import OrderedDict from django.shortcuts import get_object_or_404 +from rest_framework import serializers import graphene from graphene.relay.mutation import ClientIDMutation