MCPcopy Index your code
hub / github.com/HuolalaTech/react-query-kit / createInfiniteQuery

Function createInfiniteQuery

src/createInfiniteQuery.ts:9–18  ·  view source on GitHub ↗
(
  options: CreateInfiniteQueryOptions<TFnData, TVariables, TError, TPageParam>
)

Source from the content-addressed store, hash-verified

7import { ReactQuery } from './utils'
8
9export function createInfiniteQuery<
10 TFnData,
11 TVariables = void,
12 TError = CompatibleError,
13 TPageParam = number
14>(
15 options: CreateInfiniteQueryOptions<TFnData, TVariables, TError, TPageParam>
16): InfiniteQueryHook<TFnData, TVariables, TError, TPageParam> {
17 return createBaseQuery(options, ReactQuery.useInfiniteQuery)
18}

Callers 2

buildRouterFunction · 0.90

Calls 1

createBaseQueryFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…