Skip to content

Instantly share code, notes, and snippets.

@lydemann
Last active March 23, 2021 16:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lydemann/0ebcbf52cafc5dca64c301bdce462468 to your computer and use it in GitHub Desktop.
Save lydemann/0ebcbf52cafc5dca64c301bdce462468 to your computer and use it in GitHub Desktop.
graphql-helpers.ts
export function removeFromCache<ReadQueryResponseT>(
toRemove: EntityObject,
readQuery: DocumentNode,
cache: ApolloCache<any>,
entityName: keyof ReadQueryResponseT
) {
const existingEntities = cache.readQuery<
Record<keyof ReadQueryResponseT, EntityObject[]>
>({
query: readQuery,
});
if (toRemove && existingEntities) {
cache.writeQuery({
query: readQuery,
data: {
[entityName]: existingEntities[entityName].filter(
(entity) => entity.id !== toRemove.id
),
},
});
cache.evict({ id: toRemove.id })
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment