Defined in: packages/query-core/src/types.ts:352
InitialPageParam<TPageParam>
TQueryFnData = unknown
TPageParam = unknown
getNextPageParam: GetNextPageParamFunction<TPageParam, TQueryFnData>;Defined in: packages/query-core/src/types.ts:365
This function can be set to automatically get the next cursor for infinite queries. The result will also be used to determine the value of hasNextPage.
optional getPreviousPageParam: GetPreviousPageParamFunction<TPageParam, TQueryFnData>;Defined in: packages/query-core/src/types.ts:360
This function can be set to automatically get the previous cursor for infinite queries. The result will also be used to determine the value of hasPreviousPage.
initialPageParam: TPageParam;Defined in: packages/query-core/src/types.ts:349