标签: swift firebase google-cloud-firestore
我想在Firestore数据库中按索引获取文档。
我找到的唯一解决方案是通过
db.collection("Users") .document((Auth.auth().currentUser?.uid)!) .collection("Posts") .order(by: "updatedDate") .limit(to: numberOfEvents).getDocuments
还有其他方法吗?