我可以使用以下代码查询我的集合中的前20个数据点
db.collections.aggregate([{$project: {"text": 1}}, {$limit:20}])
如何从我的收藏中查询范围?比方说,从数据点20到40?
以下是可能的方法: