3

I am trying to completely disable caching on the apollo-client but its not working.

I have tried to set the fetchPolicy to 'network-only' or 'no-cache'. Is there something that I am missing?

Deepack
  • 77
  • 5

1 Answers1

3

You can just remove the persistor whenever you need to clean the cache.

  const persistor = new CachePersistor({ cache: this.cache, storage: window.sessionStorage as any });
  await persistor.remove();
clayweidinger
  • 103
  • 2
  • 7