API Reference

matchMutation

ts
function matchMutation(filters, mutation): boolean;

Defined in: packages/query-core/src/utils.ts:237

Checks whether a mutation matches the given MutationFilters. Every filter that is specified must match; filters that are left unspecified are ignored. If a mutationKey filter is provided but the mutation has no mutationKey of its own, it does not match.

Parameters

filters

MutationFilters

mutation

Mutation<any, any>

Returns

boolean

Example

ts
const mutationCache = queryClient.getMutationCache()

const matchingMutations = mutationCache
  .getAll()
  .filter((mutation) => matchMutation({ mutationKey: ['addPost'] }, mutation))