Cloud firestore 获取两个文档ID之间的所有文档
Cloud firestore get all documents between two ids of documents
我有一个集合,其中所有文档 ID 均为纪元时间 (1613728796)。这些文档中的每一个都包含多达 50 个字段。我想查询特定时间之间的文档集。如何根据文档的 uid 进行查询?
Query query = db.collection("my-collection").whereGreaterThan("uid", "1613728796")
试试这个:
Query query = db.collection("my-collection").whereGreaterThan("__name__", "1613728796").whereLessThan("__name__", "1613728796")
用正确的时间替换上面的纪元。
如果这不起作用,请尝试将 "__name"
替换为 FieldPath.documentId()
或 FieldPath.documentId
我有一个集合,其中所有文档 ID 均为纪元时间 (1613728796)。这些文档中的每一个都包含多达 50 个字段。我想查询特定时间之间的文档集。如何根据文档的 uid 进行查询?
Query query = db.collection("my-collection").whereGreaterThan("uid", "1613728796")
试试这个:
Query query = db.collection("my-collection").whereGreaterThan("__name__", "1613728796").whereLessThan("__name__", "1613728796")
用正确的时间替换上面的纪元。
如果这不起作用,请尝试将 "__name"
替换为 FieldPath.documentId()
或 FieldPath.documentId