james
09/13/2021, 1:21 AMclearNormalizedCache
function available on ApolloClient, how do you perform this with apollo3?mbonnin
09/13/2021, 6:50 AMstore = ApolloStore(MemoryCacheFactory())
apolloClient = ApolloClient(mockServer.url()).withStore(store)
// Do something with apolloClient ...
// Clear the store
store.clearAll()
watch
for an example) although I personally find it nice to unbundle client and cache. I find it separates responsibilities a bit more.