在Firestore中,说我有一个包含这样的文档的集合:
{
"name": "Doogal",
"animal": "dog"
}
{
"name": "Whiskers",
"anmimal": "cat",
}
{
"name": "Archibald",
"animal": "tortoise"
}
给定像这样的数组是否可能
[ "cat", "dog" ]
检索“动物”字段等于数组中任何元素的所有文档? (即本例中的Doogal和Whiskers)