Filter expected errors from sentry (#16642)

Ty!
This commit is contained in:
Abdul Rahman
2025-12-19 19:53:53 +05:30
committed by GitHub
parent 8d1329953c
commit 6dcdf5f4d8
@@ -247,8 +247,11 @@ export class ApolloFactory<TCacheShape> implements ApolloManager<TCacheShape> {
console.log('UNAUTHENTICATED, triggering token renewal');
return handleTokenRenewal(operation, forward);
}
case 'NOT_FOUND':
case 'BAD_USER_INPUT':
case 'FORBIDDEN': {
case 'FORBIDDEN':
case 'CONFLICT':
case 'METADATA_VALIDATION_FAILED': {
return;
}
case 'USER_INPUT_ERROR': {