Description
Describe the bug
The default maskError
implementation sets originalError
within the GraphQLErrorExtensions
versus the GraphQLErrorOptions
itself.
Note that originalError
is a standard GraphQLError
field: https://github.com/graphql/graphql-js/blob/0a848cc4c781fb79b2e55eb8d011675dd612524f/src/error/GraphQLError.ts#L41-L42
Although it's possible this was intended, e.g. to bypass some later error processing(?), it seems unlikely. Punning originalError
from GraphQLErrorOptions
into GraphQLErrorExtensions
inconsistent with other usage and checks of originalError
.
This is done in a few places:
graphql-yoga/packages/graphql-yoga/src/utils/mask-error.ts
Lines 38 to 44 in c3e7fdd
Both of the constructors in that file seem like they were intended to be written as:
return createGraphQLError(message, {
+ originalError: isDev
+ ? error instanceof Error
+ ? {
+ message: error.message,
+ stack: error.stack,
+ }
+ : error
+ : undefined,
extensions: {
code: 'INTERNAL_SERVER_ERROR',
unexpected: true,
- originalError: isDev
- ? error instanceof Error
- ? {
- message: error.message,
- stack: error.stack,
- }
- : error
- : undefined,
},
});
It's also done here:
However, those seem to be derived from the same source of confusion to be self-consistent, rather than a design decision, since there are no comments indicating that that was intentional.
Your Example Website or App
Steps to Reproduce the Bug or Issue
- Go to the above links and read the code.
Expected behavior
As a user, I expected extensions
to include reasonable properties and not a single property that was supposed to be on the GraphQLError itself.
Screenshots or Videos
No response
Platform
- GitHub
Additional context
Way too many "required" fields on this issue template.