React version: 17.0.2
Relay version: 12.0.0
Steps To Reproduce
- Wrap a component with an ErrorBoundary class to manage errors. Something like this:
<ErrorBoundary FallbackComponent={ErrorFallback}>
<Suspense
fallback={
<LoaderContainer>
<LoaderIcon iconSize="xl" />
</LoaderContainer>
}
>
<DetailedStatusContainer />
</Suspense>
</ErrorBoundary>
On Detailed Status Container I have this:
const data =
useLazyLoadQuery(
RobotProductOverviewBySerialNumberQuery,
serialNumber
);
- If I sent an invalid value to the query, the ErrorBoundary will be executed because the query returns 500. That's expected, but check that the console has the following errors:

Is there a way to avoid the last two errors on the console?
The current behavior
Console messages:

The expected behavior
Only shows 500 error message:

React version: 17.0.2
Relay version: 12.0.0
Steps To Reproduce
On Detailed Status Container I have this:
Is there a way to avoid the last two errors on the console?
The current behavior
Console messages:

The expected behavior
Only shows 500 error message:
