标签: node.js firebase google-cloud-firestore
我在Cloud Firestore上有一个集合“ MyCollection”,我想查询给定数组中字段“ MyField”(即字符串)所在的所有文档。
在示例中,我想通过使用数组['Hello','Hello world','Hi']查询来获取'bQ7JLvXWGNBs1PrfbcAZ'文档。
有没有办法做类似的事情:
db.collection('MyCollection').where('MyField', 'in', array)????