仅获取集合中更改的文档

时间:2020-06-17 01:48:38

标签: flutter google-cloud-firestore

我是否可以通过流(或任何其他方式)仅获取集合中已更改的文档? 我想只获取更改的文档并将其放入列表中。我知道的唯一途径就是获取整个收藏集

`_subscription = Firestore.instance.collection("games").document(GameModel.of(context).gameCode).collection("players").snapshots().listen((data) {
  List list = data.documents.map((doc)=>GamePlayer.fromDocument(doc)).toList();
  print(list.length);
});`

0 个答案:

没有答案