首页 > 解决方案 > 我可以从 Firestore 中的单个集合中检索多少个文档?

问题描述

我正在尝试创建一个搜索过滤器来从 Firestore 集合中检索数据。假设我where在 a 上调​​用一个方法CollectionReference,它返回一个满足搜索条件的文档数组。我最多可以从方法中检索多少个文档where

const result = collectionRef.where('Category','==' , `Fitness`).get(); 结果数组的最大长度是多少?

标签: firebasegoogle-cloud-firestore

解决方案


推荐阅读