feat(validation): use the existing errors array as context.Result, in… #267
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
We found that many of our application errors masked as
EXEC_INVALID_LEAF_VALUE
with the messageBoolean cannot serialize the given value.
.I eventually found that for all affected mutations we always hit the validator, but never the resolver. This lead me to look closer at the validation middleware, which I found was swallowing the original errors and replacing them with the magic string
"errors"
.I eventually found that the root cause of this was one of our AbstractValidator's, where a RuleFor failed. However, the validation middleware currently only replaces the original error with the magic string
"errors"
Fixed
In
90.3.4
and earlier you'd find the following line inDolittle.Vanir.Backend.GraphQL.Validation.ValidationMiddleware.cs
However, in
90.3.5
this suddenly changed to;Notice the new value of
context.Result
.This is obviously not intended, as you can't magically set a string on a GraphQL result, and expect it to serialize correctly.