I am using server-side rendering in which server-side query response is restored on client-side . If I trigger a refetch
, my understanding is that the network-only
fetch policy will be used. The Apollo docs say " Apollo Client executes the full query against your GraphQL server, without first checking the cache." So it’s clear the restored client-side cache will be bypassed. But my question is, will full query cache and/or HTTP cache also be bypassed?