Archives for: "February 2017"
Meteor Collection Skip and Limit
To pagination of reccords, Skip and Limit on a MongoDB collection is a "must" . "Skip" is to set the starting point of collection, "Limit" is to set the end point of Collection. That is very easy CodeCustomers.find({},{skip:10,limit:10}) Just like that! more »