When any entry is deleted after a `deleteSomething...
# prisma-whats-new
e
When any entry is deleted after a
deleteSomething
mutation, how to I also clear that entry inside Apollo’s cache? I’m using the Apollo dev tools, and I can still see the deleted entry inside the Store
1
n
@eliezedeck you need to define
update
on the mutation: http://dev.apollodata.com/react/cache-updates.html#directAccess
e
Wonderful @nilan ... Thanks