cache-first
DESCRIPTION
Apollo Client first executes the query against the cache. If all requested data is present in the cache, that data is returned. Otherwise, Apollo Client executes the query against your GraphQL server and returns that data after caching it.
Prioritizes minimizing the number of network requests sent by your application.
This is the
default
fetch policy.