@urql/exchange-graphcache
An exchange for normalized caching support in urql
@urql/exchange-graphcache
is a normalized cache exchange for the urql
GraphQL client.
This is a drop-in replacement for the default cacheExchange
that, instead of document
caching, caches normalized data by keys and connections between data.
urql
is already quite a comprehensive GraphQL client. However in several cases it may be
desirable to have data update across the entirety of an app when a response updates some
known pieces of data. This cache also provides configurable APIs to:
- resolve Query data from the offline cache
- update Query data after mutations/subscriptions responses
- provide optimistic Mutation responses
⚠️ Note: @urql/exchange-graphcache
is still in beta. Some features may be
temporarily unstable and others are not yet done. Please check the Future Features
section for more details and report any bugs or feature requests on
Spectrum.
Quick Start Guide
First install @urql/exchange-graphcache
alongside urql
:
yarn add @urql/exchange-graphcache
npm install --save @urql/exchange-graphcache
You'll then need to add the cacheExchange
, that this package exposes, to your urql
Client,
by replacing the default cache exchange with it:
import { createClient, dedupExchange, fetchExchange } from 'urql';
import { cacheExchange } from '@urql/exchange-graphcache';
const client = createClient({
url: 'http://localhost:1234/graphql',
exchanges: [
dedupExchange,
cacheExchange({
}),
fetchExchange,
],
});
Future Features
Schema awareness is important so that we can offer safe offline results that
are partially cached instead of fully. The schema is also necessary to know
how to match interface or enum fragments correctly. Currently a heuristic
is in place that matches if all fields of the fragment are present in the cache
Usage
You can currently configure:
resolvers
: A nested ['__typename'][fieldName]
map to resolve results from cacheupdates
: A Mutation/Subscription field map to apply side-effect updates to the cacheoptimistic
: A mutation field map to supply optimistic mutation responseskeys
: A __typename
map of functions to generate keys with
Note that you don't need any of these options to get started
Keys
Keys are used when you need a slight alteration to the value of your identifier or
when the identifier is a non-traditional property.
Read more
Resolvers
Resolvers are needed when you want to do additional resolving, for example do some
custom date formatting.
Read more
Updates
The graph cache will automatically handle updates but some things are quite hard to
incorporate. Let's say you delete/add an item, it's hard for us to know you wanted to
delete or where to add an item in a list.
Read more
Optimistic
Here you can configure optimistic responses, this means that we don't wait for the server
to respond but offer the user to instantly replace the data with the variables from the
mutation.
Read more
Maintenance Status
Active: Formidable is actively working on this project, and we expect to continue for work for the foreseeable future. Bug reports, feature requests and pull requests are welcome.