Skip to content

Latest commit

 

History

History
39 lines (32 loc) · 789 Bytes

query-retries.md

File metadata and controls

39 lines (32 loc) · 789 Bytes
id title ref replace
query-retries
Query Retries
docs/react/guides/query-retries.md
Provider
Plugin
import { useQuery } from '@tanstack/vue-query'

// Make a specific query retry a certain number of times
const result = useQuery({
  queryKey: ['todos', 1],
  queryFn: fetchTodoListPage,
  retry: 10, // Will retry failed requests 10 times before displaying an error
})
import { VueQueryPlugin } from '@tanstack/vue-query'

const vueQueryPluginOptions = {
  queryClientConfig: {
    defaultOptions: {
      queries: {
        retryDelay: (attemptIndex) => Math.min(1000 * 2 ** attemptIndex, 30000),
      },
    },
  },
}
app.use(VueQueryPlugin, vueQueryPluginOptions)