sentry_link 0.0.2 sentry_link: ^0.0.2 copied to clipboard
Automatic capture of exceptions and GraphQL errors for the gql eco-system, like graphql and ferry
Sentry Link (GraphQL) #
Integration for the gql_link
package to collect error reports for GraphQL requests. This is used by a wide variety of GraphQL libraries like ferry
or graphql
.
Usage #
Just add SentryLink.link()
to your links.
final link = Link.from([
SentryLink.link(),
AuthLink(getToken: () async => 'Bearer $personalAccessToken'),
HttpLink('https://api.github.com/graphql'),
]);