mirror of
https://github.com/langgenius/dify.git
synced 2026-08-29 19:54:46 +08:00
Co-authored-by: zhangx1n <zhangxin@dify.ai> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
16 lines
509 B
TypeScript
16 lines
509 B
TypeScript
import type { QueryKey } from '@tanstack/react-query'
|
|
import { useQueryClient } from '@tanstack/react-query'
|
|
import { useCallback } from 'react'
|
|
|
|
/**
|
|
* @deprecated Convenience wrapper scheduled for removal.
|
|
* Prefer binding invalidation in `useMutation` callbacks at the service layer.
|
|
*/
|
|
export const useInvalid = (key?: QueryKey) => {
|
|
const queryClient = useQueryClient()
|
|
return useCallback(() => {
|
|
if (!key) return
|
|
queryClient.invalidateQueries({ queryKey: key })
|
|
}, [queryClient, key])
|
|
}
|