( options: UseInfiniteQueryOptions, queryClient?: QueryClient, )
| 70 | ): UseInfiniteQueryResult<TData, TError> |
| 71 | |
| 72 | export function useInfiniteQuery( |
| 73 | options: UseInfiniteQueryOptions, |
| 74 | queryClient?: QueryClient, |
| 75 | ) { |
| 76 | return useBaseQuery( |
| 77 | options, |
| 78 | InfiniteQueryObserver as typeof QueryObserver, |
| 79 | queryClient, |
| 80 | ) |
| 81 | } |
searching dependent graphs…