I want to get a document by index in my Firestore database.
The only solution I've found is by finding it through the documents produced by
db.collection("Users")
.document((Auth.auth().currentUser?.uid)!)
.collection("Posts")
.order(by: "updatedDate")
.limit(to: numberOfEvents).getDocuments
Is there any other way to do this?