fresh_graphql 0.1.0 copy "fresh_graphql: ^0.1.0" to clipboard
fresh_graphql: ^0.1.0 copied to clipboard

outdated

An graphql link for token refresh. Built on top of package:graphql and manages authentication tokens transparently.

fresh_graphql 🍋 #

Pub build coverage style: effective dart License: MIT


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(
  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')]),
);

Example #

See the example for a complete sample application using fresh_graphql which integrates with api.graphql.jobs.

32
likes
0
pub points
89%
popularity

Publisher

verified publisherfelangel.dev

An graphql link for token refresh. Built on top of package:graphql and manages authentication tokens transparently.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

fresh, graphql, http, meta

More

Packages that depend on fresh_graphql