How can I get let's say the oldest 5 records from MongoDB using mongoose and after let's say the next 5 records and so on. What I have by now is this
Model.find().sort({time: -1}).limit(5).exec( ...);
But I want after some time to get next 5, how can I do this?