搜索字段等于数组中任何一个元素的文档

时间:2018-10-13 16:57:14

标签: firebase google-cloud-firestore

在Firestore中,说我有一个包含这样的文档的集合:

{ 
  "name": "Doogal",
  "animal": "dog"
}

{
  "name": "Whiskers",
  "anmimal": "cat",
}

{
  "name": "Archibald",
  "animal": "tortoise"
}

给定像这样的数组是否可能

[ "cat", "dog" ]

检索“动物”字段等于数组中任何元素的所有文档? (即本例中的Doogal和Whiskers)

0 个答案:

没有答案