I\'m using apollo-client, apollo-link and react-apollo, I want to fully disable cache, but don\'t know how to do it.
I read the source of
I would always suggest not to disable inbuild caching feature from apollo client. Instead you can always set fetchPolicy: 'network-only'
for an individual queries.
Something like this
{({ loading, error, data, refetch, networkStatus }) => {
...
}}
While fetching data with this Query, it would always do a network request instead of reading from cache first.