Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
|
raw
history blame
449 Bytes
metadata
id: query-cancellation
title: Query Cancellation
ref: docs/framework/react/guides/query-cancellation.md
const query = useQuery({
  queryKey: ['todos'],
  queryFn: async ({ signal }) => {
    const resp = await fetch('/todos', { signal })
    return resp.json()
  },
})

const queryClient = useQueryClient()

function onButtonClick() {
  queryClient.cancelQueries({ queryKey: ['todos'] })
}