我的firestore数据库如下:
users {
document(
name : "string"
subcollections {
document(
name : "string"
)
}
)
}
我想对用户集合中包含的每个文档中的每个子集合进行查询。
我正在使用云功能,但是我尝试了一下,但是没有用
admin.firestore().collectionGroup("subcollectionName").where("name", "==","string")
预先感谢可以帮助我的人