Summary
Data stored in Apollo can be removed by calling cache.data.delete(key) where key is the key that Apollo is using to store the data for a specific item. This will delete the record entirely from the cache.
1
Additionally, paginated queries can be updated by refetching the query and updating the cache with the new data.
According to