Querying
Execute the query
Post.where('clicks').gt(999).exec()
.then(function(list) {
});Stream documents
Post.where('clicks').gt(999).exec()
.then(function(list) {
// No more results
}, function(err) {
// Error
}, function(post) {
// Receive a document
});Query one document
Last updated