Skip to content

handleError incorrectly sets extensions.http.unexpected instead of extensions.unexpected #3943

Open
@rwe

Description

@rwe

Describe the bug

This is done in only one place and is obviously unintended:

errors.add(
createGraphQLError(error.toString(), {
extensions: {
code: 'INTERNAL_SERVER_ERROR',
unexpected: true,
},
}),
);
} else {
logger.error(error);
errors.add(
createGraphQLError('Unexpected error.', {
extensions: {
http: {
unexpected: true,
},
},
}),
);

Your Example Website or App

https://localhost

Steps to Reproduce the Bug or Issue

  1. Go to above link

Expected behavior

It sets the correct extension property in that fallback case.

Screenshots or Videos

No response

Platform

  • GitHub

Additional context

No response

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions