Filter BAD_USER_INPUT errors from Sentry (#16511)

Closes #15561
This commit is contained in:
Abdul Rahman
2025-12-12 13:38:50 +05:30
committed by GitHub
parent 865265d0d9
commit 4b2a604ef0
@@ -247,6 +247,7 @@ export class ApolloFactory<TCacheShape> implements ApolloManager<TCacheShape> {
console.log('UNAUTHENTICATED, triggering token renewal');
return handleTokenRenewal(operation, forward);
}
case 'BAD_USER_INPUT':
case 'FORBIDDEN': {
return;
}