Replies: 2 comments 2 replies
-
fetchMore subscribes to both the previous page and the new page This is necessary since items can be removed or inserted in the previous page, impacting the next page |
Beta Was this translation helpful? Give feedback.
0 replies
-
Thanks for your answer but my question is does fetchMore() only fetches the new pages then appends it to the previous pages or does it fetch all previous pages and the next page. So if currently I have 10 pages and I call fetchMore(), does this function fetch only page 11 or does it fetch 11 pages? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I would like to clarify one thing about fetchMore in FirestoreQueryBuilder. So let's say my page size is 10 documents and currently one page of 10 documents is loaded. When I call fetchMore() does this function load the next 10 documents and append them to the previous 10 documents or does it load the previous 10 documents and the next 10 documents?
Thanks for your help..
Beta Was this translation helpful? Give feedback.
All reactions