apollo-link-sentry
Version:
[Apollo Link](https://www.apollographql.com/docs/react/api/link/introduction) to enrich [Sentry](https://sentry.io) events with [GraphQL](https://graphql.org) data
6 lines (5 loc) • 320 B
TypeScript
import { ClientOptions } from '@sentry/core';
type BeforeBreadcrumbCallback = NonNullable<ClientOptions['beforeBreadcrumb']>;
export declare const excludeGraphQLFetch: BeforeBreadcrumbCallback;
export declare function withoutGraphQLFetch(beforeBreadcrumb: BeforeBreadcrumbCallback): BeforeBreadcrumbCallback;
export {};