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
As things currently stand, I don't see how the onError() callback would ever be called for post requests, since handler defined in AbstractGraphQLHttpServlet always catches the exception and sets the response code to 500:
As things currently stand, I don't see how the
onError()
callback would ever be called for post requests, since handler defined inAbstractGraphQLHttpServlet
always catches the exception and sets the response code to 500:When the handler is called, it'll never reach
onError()
; it actually callsonSuccess()
instead:Having this fixed would help with #129.
The text was updated successfully, but these errors were encountered: