react-code-dataset / react-query /docs /reference /InfiniteQueryObserver.md
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
|
raw
history blame
693 Bytes
---
id: InfiniteQueryObserver
title: InfiniteQueryObserver
---
## `InfiniteQueryObserver`
The `InfiniteQueryObserver` can be used to observe and switch between infinite queries.
```tsx
const observer = new InfiniteQueryObserver(queryClient, {
queryKey: ['posts'],
queryFn: fetchPosts,
getNextPageParam: (lastPage, allPages) => lastPage.nextCursor,
getPreviousPageParam: (firstPage, allPages) => firstPage.prevCursor,
})
const unsubscribe = observer.subscribe((result) => {
console.log(result)
unsubscribe()
})
```
**Options**
The options for the `InfiniteQueryObserver` are exactly the same as those of [`useInfiniteQuery`](../../framework/react/reference/useInfiniteQuery).