You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tracing errors can be incredibly difficult as graphene collects the error messages and returns them. This is great for production but not during development. For example, I get the following back from a query and have no idea what is causing the error:
{
"errors": [
{
"message": "'unicode' object has no attribute 'get'"
}
],
"data": {
"users": null
}
}
Would it be possible to include some sort of debug flag that can raise exceptions with stacktraces on error?
The text was updated successfully, but these errors were encountered:
@Mleonard87graphene generate the response json not Flask. It collect said errors as part of its execution... should probably improve it and add trace etc
Tracing errors can be incredibly difficult as graphene collects the error messages and returns them. This is great for production but not during development. For example, I get the following back from a query and have no idea what is causing the error:
Would it be possible to include some sort of debug flag that can raise exceptions with stacktraces on error?
The text was updated successfully, but these errors were encountered: