* Returns the mutation cache this client is connected to. * * @example * ```ts * import { QueryClient } from '@tanstack/query-core' * * const queryClient = new QueryClient() * const mutationCache = queryClient.getMutationCache() * const mutations = mutationCache.findAll({ sta
()
| 806 | * ``` |
| 807 | */ |
| 808 | getMutationCache(): MutationCache { |
| 809 | return this.#mutationCache |
| 810 | } |
| 811 | |
| 812 | /** |
| 813 | * Returns the default options that were set when creating the client, or via |
no outgoing calls