We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9486fef commit feabce7Copy full SHA for feabce7
graphql_server/error.py
@@ -11,3 +11,6 @@ def __eq__(self, other):
11
other.status_code == self.status_code and \
12
other.message == self.message and \
13
other.headers == self.headers
14
+
15
+ def __hash__(self):
16
+ return hash((self.status_code, self.message, self.headers))
0 commit comments