We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e17044 commit 7108bc8Copy full SHA for 7108bc8
1 file changed
graphene/relay/node.py
@@ -88,7 +88,9 @@ def get_node_from_global_id(cls, info, global_id, only_type=None):
88
_type, _id = cls.from_global_id(global_id)
89
except Exception as e:
90
raise Exception(
91
- f'Unable to parse global ID "{global_id}". Make sure it is a base64 encoded string in the format: "TypeName:id". Exception message: {e}'
+ f'Unable to parse global ID "{global_id}". '
92
+ 'Make sure it is a base64 encoded string in the format: "TypeName:id". '
93
+ f"Exception message: {e}"
94
)
95
96
graphene_type = info.schema.get_type(_type)
0 commit comments