在Firebase的Cloud FireStore for Flutter中,我可以根据以下文档的ID值删除该文档,并且可以正常工作。
Firestore.instance
.collection("newsfeed")
.document(post.uid)
.delete();
但是我想基于字段搜索集合并删除所有匹配的文档。
我可以根据where
的条件得到一些东西,如下所示。但是我不确定如何删除所有结果文档。
Stream<QuerySnapshot> feedSnapShot = Firestore.instance
.collection('newsfeed')
.where('type', isEqualTo: type)
.snapshots();