25 lines
581 B
TypeScript
25 lines
581 B
TypeScript
import { useApolloClient } from '@apollo/client';
|
|
|
|
export const useOptimisticEvict = () => {
|
|
const cache = useApolloClient().cache;
|
|
|
|
const performOptimisticEvict = (
|
|
typename: string,
|
|
fieldName: string,
|
|
fieldValue: string,
|
|
) => {
|
|
const serializedCache = cache.extract();
|
|
|
|
Object.values(serializedCache)
|
|
.filter((item) => item.__typename === typename)
|
|
.forEach((item) => {
|
|
if (item[fieldName] === fieldValue) {
|
|
cache.evict({ id: cache.identify(item) });
|
|
}
|
|
});
|
|
};
|
|
return {
|
|
performOptimisticEvict,
|
|
};
|
|
};
|