(
mutationKey?: MutationKey
)
| 570 | } |
| 571 | |
| 572 | getMutationDefaults( |
| 573 | mutationKey?: MutationKey |
| 574 | ): MutationObserverOptions<any, any, any, any> | undefined { |
| 575 | return mutationKey |
| 576 | ? this.mutationDefaults.find(x => |
| 577 | partialMatchKey(mutationKey, x.mutationKey) |
| 578 | )?.defaultOptions |
| 579 | : undefined |
| 580 | } |
| 581 | |
| 582 | defaultQueryOptions< |
| 583 | TQueryFnData, |
no test coverage detected