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
BC break: User errors returned from directives & resolvers are now consistently wrapped in gqlerror.Errors internally by the runtime, which has been updated to support go 1.13 unwrapping - #1312
Since #1115 was merged, errors from inputs have been wrapped, but didn't support unwrapping, leading to #1291
With all errors now wrapped before the error presenter is called, custom error presenters that use type assertions will be broken.
errors.As must instead be used to assert/convert error types in custom error presenters.