diff --git a/graphene_django/forms/mutation.py b/graphene_django/forms/mutation.py index b7bf0493f..2c62db0ef 100644 --- a/graphene_django/forms/mutation.py +++ b/graphene_django/forms/mutation.py @@ -47,7 +47,7 @@ def mutate_and_get_payload(cls, root, info, **input): else: errors = ErrorType.from_errors(form.errors) - return cls(errors=errors, **form.data) + return cls(errors=errors) @classmethod def get_form(cls, root, info, **input):