I\'m trying to reset the store after logout in my react-apollo application.
So I\'ve created a method called \"logout\" which is called when I click on a button (and pas
If you need to clear your cache and don't want to fetch all active queries you can use:
client.cache.reset()
client being your Apollo client.
client
Keep in mind that this will NOT trigger the onResetStore event.
onResetStore