Replies: 2 comments 6 replies
-
you should only fetch when |
Beta Was this translation helpful? Give feedback.
6 replies
-
maybe you could just return Promise.reject() if next page is empty? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am using
useInfiniteQuery
to create a chat app with bi-directional cursor pagination. Fetching the previous page will get older messages and fetching the next page should get newer messages.Currently, what I do to achieve this is to call
fetchNextPage
every interval insideuseEffect
. Additionally, the server accepts a cursor and a direction ('forward' | 'backward'
), and if no items are found, the cursor returned by the server matches the provided request cursor to allow react query to continuously fetch the next page withouthasNextPage
turningfalse
.My current strategy works, however, it adds a new empty page entry to the
pages
array every time the client fetches the next page without new items being returned by the server. This seems inefficient memory wise.I was wondering if there is a better way to achieve this "next-page polling" while still keeping complexity low.
Beta Was this translation helpful? Give feedback.
All reactions