type MutationStateOptions<TResult> = object;Defined in: packages/lit-query/src/useMutationState.ts:20
Options accepted by useMutationState.
TResult
optional filters: Accessor<MutationFilters>;Defined in: packages/lit-query/src/useMutationState.ts:22
Filters used to select mutations from the mutation cache.
optional select: (mutation) => TResult;Defined in: packages/lit-query/src/useMutationState.ts:24
Maps each matching mutation to the value returned by the accessor.
Mutation
TResult