What is the correct with to do pagination with Firebase firestore's querySnapshot?
I am currently dealing with pagination with addSnapshotListener in Firebase's firestore and it appears there's no easy way to implement Snapshot with pagination. Original premise: I started the implementation with addSnapshotListener as follows: db.collectionGroup("images") .order(by: "createdTime") .whereField("featured", isEqualTo: true) .addSnapshotListener…