Apollo GraphQL Fetch Policy
How you want your component to interact with the Apollo cache. Defaults to “cache-first”.
There are many options to this: “cache-first” | “cache-and-network” | “network-only” | “cache-only” | “no-cache” | “standby”
const { loading, error, data } = useQuery(QUERY, {
variables: queryVariables,
fetchPolicy: 'no-cache'
})