(arg1?: QueryKey | QueryFilters, arg2?: QueryFilters)
| 93 | isFetching(filters?: QueryFilters): number |
| 94 | isFetching(queryKey?: QueryKey, filters?: QueryFilters): number |
| 95 | isFetching(arg1?: QueryKey | QueryFilters, arg2?: QueryFilters): number { |
| 96 | const [filters] = parseFilterArgs(arg1, arg2) |
| 97 | filters.fetching = true |
| 98 | return this.queryCache.findAll(filters).length |
| 99 | } |
| 100 | |
| 101 | isMutating(filters?: MutationFilters): number { |
| 102 | return this.mutationCache.findAll({ ...filters, fetching: true }).length |
nothing calls this directly
no test coverage detected