Last updated:
0 purchases
fresh graphql
fresh_graphql 🍋 #
A graphql link for built-in token refresh. Built to be used with fresh.
Overview #
fresh_graphql is a graphql link which attempts to simplify custom API authentication by integrating token refresh and caching transparently. fresh_graphql is flexible and is intended to support custom token refresh mechanisms.
Usage #
final freshLink = FreshLink.oAuth2(
tokenStorage: InMemoryTokenStorage(),
refreshToken: (token, client) {
// Perform refresh and return new token
},
);
final graphQLClient = GraphQLClient(
cache: InMemoryCache(),
link: Link.from([freshLink, HttpLink(uri: 'https://my.graphql.api')]),
);
copied to clipboard
Example #
See the example for a complete sample application using fresh_graphql which integrates with api.graphql.jobs.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.