graphql-react
Version:
A GraphQL client for React using modern context and hooks APIs that’s lightweight (< 4 kB) but powerful; the first Relay and Apollo alternative with server side rendering.
26 lines (20 loc) • 948 B
JavaScript
// @ts-check
import Cache from "./Cache.mjs";
import cacheEntryPrune from "./cacheEntryPrune.mjs";
/** @typedef {import("./Cache.mjs").CacheKey} CacheKey */
/**
* Prunes {@link Cache.store cache store} entries by using
* {@linkcode cacheEntryPrune} for each entry. Useful after a mutation.
* @param {Cache} cache Cache to update.
* @param {import("./types.mjs").CacheKeyMatcher} [cacheKeyMatcher] Matches
* {@link CacheKey cache keys} to prune. By default all are matched.
*/
export default function cachePrune(cache, cacheKeyMatcher) {
if (!(cache instanceof Cache))
throw new TypeError("Argument 1 `cache` must be a `Cache` instance.");
if (cacheKeyMatcher !== undefined && typeof cacheKeyMatcher !== "function")
throw new TypeError("Argument 2 `cacheKeyMatcher` must be a function.");
for (const cacheKey in cache.store)
if (!cacheKeyMatcher || cacheKeyMatcher(cacheKey))
cacheEntryPrune(cache, cacheKey);
}