我的数据库结构
- `VHpHJDSvjyYmAteoQEu0AeEHWVg2` [collection]
- `LI4deUjJK3uqOGhMLDfR` [document]
- `Gallery` [collection]
- `RjuCvHvuoz2GRW4Rkuyi` [document]
- `attachmentId` [field]
- `type` [field]
要获取集合Gallery
中的所有文档
Query query = firebaseFirestore.collection(userId).document(docTripId).collection("Gallery");
如何基于字段Gallery
检索集合type
中的文档等于“相机”?
我们将不胜感激任何帮助。
答案 0 :(得分:0)
应该是这样的:
CollectionReference collection = firebaseFirestore.collection(userId).document(docTripId).collection("Gallery");
Query query = collection.whereEqualTo("type", "camera");