Skip to main content
Version: v16.0.0

Fetch Policies

The first step to reusing locally cached data is to pass a fetchPolicy to the loadQuery function, which can be provided by useQueryLoader (see the Fetching Queries section):

const React = require('React');
const {graphql} = require('react-relay');

function AppTabs() {
const [
queryRef,
loadQuery,
] = useQueryLoader(HomeTabQuery);

const onSelectHomeTab = () => {
loadQuery({id: '4'}, {fetchPolicy: 'store-or-network'});
}

// ...
}

The provided fetchPolicy will determine:

By default, Relay will try to read the query from the local cache; if any piece of data for that query is missing or stale, it will fetch the entire query from the network. This default fetchPolicy is called "store-or-network".

Specifically, fetchPolicy can be any of the following options: **

  • "store-or-network": (default) will reuse locally cached data, and will only send a network request if any data for the query is missing or stale. If the query is fully cached, a network request will not be made.
  • "store-and-network": will reuse locally cached data and will always send a network request, regardless of whether any data was missing or stale in the store.
  • "network-only": will not reuse locally cached data, and will always send a network request to fetch the query, ignoring any data that might be locally cached and whether it's missing or stale.
  • "store-only": will only reuse locally cached data, and will never send a network request to fetch the query. In this case, the responsibility of fetching the query falls to the caller, but this policy could also be used to read and operate on data that is entirely local.

Note that the refetch function discussed in the Fetching and Rendering Different Data section also takes a fetchPolicy.


Is this page useful?

Help us make the site even better by answering a few quick questions.