Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

MutationFilters

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

§Properties

§
exact?: boolean
[src]

Match mutation key exactly

§
fetching?: boolean
[src]

Include or exclude fetching mutations

§
mutationKey?: MutationKey
[src]

Include mutations matching this mutation key

§
predicate?: (mutation: Mutation<any, any, any>) => boolean
[src]

Include mutations matching this predicate function