We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22f7f76 commit a8f5db0Copy full SHA for a8f5db0
packages/query-core/src/queryCache.ts
@@ -80,10 +80,10 @@ export type QueryCacheNotifyEvent =
80
type QueryCacheListener = (event: QueryCacheNotifyEvent) => void
81
82
export interface QueryStore {
83
- has: (queryKey: string) => boolean
84
- set: (queryKey: string, query: Query) => void
85
- get: (queryKey: string) => Query | undefined
86
- delete: (queryKey: string) => void
+ has: (queryHash: string) => boolean
+ set: (queryHash: string, query: Query) => void
+ get: (queryHash: string) => Query | undefined
+ delete: (queryHash: string) => void
87
values: () => IterableIterator<Query>
88
}
89
0 commit comments