MCPcopy
hub / github.com/TanStack/query / findAll

Method findAll

packages/query-core/src/queryCache.ts:193–198  ·  view source on GitHub ↗
(filters: QueryFilters<any> = {})

Source from the content-addressed store, hash-verified

191 }
192
193 findAll(filters: QueryFilters<any> = {}): Array<Query> {
194 const queries = this.getAll()
195 return Object.keys(filters).length > 0
196 ? queries.filter((query) => matchQuery(filters, query))
197 : queries
198 }
199
200 notify(event: QueryCacheNotifyEvent): void {
201 notifyManager.batch(() => {

Callers 15

ExamplesFunction · 0.95
ExamplesFunction · 0.95
ExamplesFunction · 0.95
ExamplesFunction · 0.95
WithKnownParametersFunction · 0.45
WithKnownParametersFunction · 0.45
ExamplesFunction · 0.45
ExamplesFunction · 0.45
isFetchingMethod · 0.45
isMutatingMethod · 0.45
getQueriesDataMethod · 0.45
setQueriesDataMethod · 0.45

Calls 2

getAllMethod · 0.95
matchQueryFunction · 0.90

Tested by

no test coverage detected