mirror of
http://112.124.100.131/huang.ze/ebiz-dify-ai.git
synced 2025-12-06 09:26:50 +08:00
14 lines
243 B
TypeScript
14 lines
243 B
TypeScript
import {
|
|
useQueryClient,
|
|
} from '@tanstack/react-query'
|
|
|
|
export const useInvalid = (key: string[]) => {
|
|
const queryClient = useQueryClient()
|
|
return () => {
|
|
queryClient.invalidateQueries(
|
|
{
|
|
queryKey: key,
|
|
})
|
|
}
|
|
}
|