Pagination CanLoadMore
Hello I have a question on pagination example I have 20 records and I already retrieve 20 records the status is still CanLoadMore instead of exhausted? is that normal?
4 Replies
Thanks for posting in <#1088161997662724167>.
Reminder: If you have a Convex Pro account, use the Convex Dashboard to file support tickets.
- Provide context: What are you trying to achieve, what is the end-user interaction, what are you seeing? (full error message, command output, etc.)
- Use search.convex.dev to search Docs, Stack, and Discord all at once.
- Additionally, you can post your questions in the Convex Community's <#1228095053885476985> channel to receive a response from AI.
- Avoid tagging staff unless specifically instructed.
Thank you!
The pagination system uses cursor based pagination, and it may need one additional query to definitively determine there are no more results.
Try calling
loadMore()
one more time to see if it then changes to "Exhausted"
@Jovengot it thanks @Hmza just wanted to check if I am implemting it correctly
no prob.