GraphQL Caching
Client Caching
Apollo Client stores the results of your GraphQL queries in a local, normalized, in-memory cache.
Redwood provides a custom hook called useCache
that makes it more convenience to access and use the cache object.
Please refer to Apollo's documentation for complete information about Caching in Apollo Client.
useCache Hook
useCache
is a custom hook that returns the cache object and some useful methods to interact with the cache.
import { useCache } from '@redwoodjs/web/apollo'
const CacheExample = () => {
const { cache, evict, extract, identify, modify, resetStore, clearStore } =
useCache()
// ...
}
Helper Methods
cache
The cache object itself.
With cache
you can access methods on the cache not exposed as helpers here, such as readQuery
or gc
for garbage collections. See Apollo's caching interaction documentation.
To help understand the structure of your cached data, you can install the Apollo Client Devtools.
This browser extension includes an inspector that enables you to view all of the normalized objects contained in your cache.
Alternatively, see extract to get a normalized cache object you can inspect.
evict
Either removes a normalized object from the cache or removes a specific field from a normalized object in the cache.
import { useCache } from '@redwoodjs/web/apollo'
const CacheExample = () => {
const { evict } = useCache()
// You can remove any normalized object from the cache using the evict method:
evict({ id: 'Post:123' })
// You can also remove a single field from a cached object by providing the name of the field to remove
evict({ id: 'Post:123', fieldName: 'title' })
}
extract
Returns a serialized representation of the cache's current contents
import { useCache } from '@redwoodjs/web/apollo'
const CacheExample = () => {
const { extract } = useCache()
console.log(extract())
}
identify
If a type in your cache uses a custom cache ID (or even if it doesn't), you can use the cache.identify
method to obtain the cache ID for an object of that type.
This method takes an object and computes its ID based on both its __typename
and its identifier field(s).
This means you don't have to keep track of which fields make up each type's cache ID.
import { useCache } from '@redwoodjs/web/apollo'
const CacheExample = () => {
const { identify } = useCache()
const id = identify({ __typename: 'User', id: 1 })
console.log(id)
}