gpt4 book ai didi

mongodb-stitch - 我们如何跳过mongodb stitch中的记录?

转载 作者:行者123 更新时间:2023-12-04 06:41:01 25 4
gpt4 key购买 nike

我可以在 mongoDB Stitch 中看到限制选项 docs但无法找到我们如何跳过记录进行分页。

enter image description here

最佳答案

您可以将聚合与管道一起使用。类似的东西:

exports = function(arg){
const mongodb = context.services.get("mongodb-atlas");
const coll = mongodb.db(<dbname>).collection(<collectionname>);

const pipeline = [
{ "$skip" : 1 },
{ "$limit": 20 }
];

return coll
.aggregate(pipeline)
.toArray();

};

关于mongodb-stitch - 我们如何跳过mongodb stitch中的记录?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49605748/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com