How can I paginate Firestore results between a lower and upper bound using query cursors without fetching previous pages?
I need to retrieve a specific page of results from a Firestore collection ordered by population, while restricting the results to a defined lower and upper population bound (e.g., between 1,000,000 and 5,000,000). The collection is large and frequently updated, so I want to avoid reading all preceding pages to reach the desired page. I plan to use query curs