I\'m working with Firebase - Cloud Firestore and at the moment I would like to paginate all the records available. I already have a list of records and what is left is some
Use startAt() or startAfter() for that
firestore .collection("Users") .startAt(0) .limit(10) .get()