From aef30d9d0b1f141d517cbc7822336c06d56b2784 Mon Sep 17 00:00:00 2001 From: "Leo(Jeemyeong) Lee" Date: Tue, 12 Jul 2022 17:37:26 +0900 Subject: [PATCH] Fix: import dependency --- graphene_django/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphene_django/views.py b/graphene_django/views.py index c23b02081..82985ba5b 100644 --- a/graphene_django/views.py +++ b/graphene_django/views.py @@ -11,7 +11,7 @@ from django.views.generic import View from graphql import OperationType, get_operation_ast, parse, validate from graphql.error import GraphQLError -from graphql.error import format_error as format_graphql_error +from graphql.error.graphql_error import format_error as format_graphql_error from graphql.execution import ExecutionResult from graphene import Schema