This mixin provides
find()
method.- Source:
Example
var collection = new KagoDB();
// all items
collection.find().toArray(function(err, list) {
list.forEach(function(item) {
console.log(item.name, item.price);
});
});