xxxxxxxxxx
/*
The $in operator selects the documents where the value of a
field equals any value in the specified array.
*/
-- Syntax : { field: { $in: [<value1>, <value2>, <valueN> ] } }
db.inventory.find( { quantity: { $in: [ 5, 15 ] } }, { _id: 0 } )
xxxxxxxxxx
UserModel.find() // find all users
.skip(100) // skip the first 100 items
.limit(10) // limit to 10 items
.sort({firstName: 1} // sort ascending by firstName
.select({firstName: true} // select firstName only
.exec() // execute the query
.then(docs => {
console.log(docs)
})
.catch(err => {
console.error(err)
})