(public config: MutationCacheConfig = {})
| 96 | #mutationId: number |
| 97 | |
| 98 | constructor(public config: MutationCacheConfig = {}) { |
| 99 | super() |
| 100 | this.#mutations = new Set() |
| 101 | this.#scopes = new Map() |
| 102 | this.#mutationId = 0 |
| 103 | } |
| 104 | |
| 105 | build<TData, TError, TVariables, TOnMutateResult>( |
| 106 | client: QueryClient, |
nothing calls this directly
no outgoing calls
no test coverage detected