我的firestore文档包含一个名为id
的字段,该字段位于地图中名为“订单”的集合的会场部分。
|-orders //collection
order //doc
venue {id:'12345'}. Map in doc called venue that contains a string field called id
我想使用isEqualTo
来查询该字段。如何引用该字段?
答案 0 :(得分:2)
... 发现解决方案..很简单
就我而言:
query.where('venue.id',isEqualTo: '12'),