基础
开发指引
小程序端SDK
服务端SDK
初始化
常量
云函数
文件存储
工具类
数据库
Database
Document
Collection
Command
AggregateCommand
Geo
指定查询结果集数量上限
value: number
limit 在小程序端默认及最大上限为 20,在云函数端默认及最大上限为 100
db.collection('todos').limit(10) .get() .then(console.log) .catch(console.error)
← get orderBy →