我在Firebase Firestore中有如下数据
我想查找所有unit
,且它们的resident
带有单独的cellphone
数字。
residents
是数组,residents
中的每个项目都是一个map
对象,其对象名为cellphone
我知道我可以过滤下面的数组
const query = col.where('items', 'array-contains', 'fruit loops')
并过滤下面的地图
const query = col.where('resident.cellphone', '==', '16475374201')
但是我不知道如何将它们结合起来。
感谢您的帮助