Interface MutationFilters

interface MutationFilters {
    exact?: boolean;
    mutationKey?: MutationKey;
    predicate?: ((mutation: Mutation<any, any, any, unknown>) => boolean);
    status?: MutationStatus;
}

Properties

exact?: boolean

Match mutation key exactly

mutationKey?: MutationKey

Include mutations matching this mutation key

predicate?: ((mutation: Mutation<any, any, any, unknown>) => boolean)

Include mutations matching this predicate function

Filter by mutation status