Skip to content

Commit cd01c7e

Browse files
committed
Add HandledGraphQLError that does not log an exception
1 parent 9202021 commit cd01c7e

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

graphql/error/__init__.py

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
1-
from .base import GraphQLError
1+
from .base import GraphQLError, HandledGraphQLError
22
from .located_error import GraphQLLocatedError
33
from .syntax_error import GraphQLSyntaxError
44
from .format_error import format_error
55

6-
__all__ = ["GraphQLError", "GraphQLLocatedError", "GraphQLSyntaxError", "format_error"]
6+
7+
__all__ = [
8+
"GraphQLError",
9+
"GraphQLLocatedError",
10+
"GraphQLSyntaxError",
11+
"HandledGraphQLError",
12+
"format_error",
13+
]

graphql/error/base.py

+3
Original file line numberDiff line numberDiff line change
@@ -78,3 +78,6 @@ def locations(self):
7878
if self.positions and source:
7979
self._locations = [get_location(source, pos) for pos in self.positions]
8080
return self._locations
81+
82+
class HandledGraphQLError(GraphQLError):
83+
pass

graphql/execution/executor.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from six import string_types
99
from promise import Promise, promise_for_dict, is_thenable
1010

11-
from ..error import GraphQLError, GraphQLLocatedError
11+
from ..error import GraphQLError, GraphQLLocatedError, HandledGraphQLError
1212
from ..pyutils.default_ordered_dict import DefaultOrderedDict
1313
from ..pyutils.ordereddict import OrderedDict
1414
from ..utils.undefined import Undefined
@@ -445,6 +445,8 @@ def resolve_or_error(
445445
# type: (...) -> Any
446446
try:
447447
return executor.execute(resolve_fn, source, info, **args)
448+
except HandledGraphQLError:
449+
raise
448450
except Exception as e:
449451
logger.exception(
450452
"An error occurred while resolving field {}.{}".format(

0 commit comments

Comments
 (0)