Web Development with MongoDB and Node - Third Edition: Build fast web applications for handling any kind of data by Bruno Joseph D'mello & Mithun Satheesh & Jason Krol

Web Development with MongoDB and Node - Third Edition: Build fast web applications for handling any kind of data by Bruno Joseph D'mello & Mithun Satheesh & Jason Krol

Author:Bruno Joseph D'mello & Mithun Satheesh & Jason Krol [D'mello, Bruno Joseph]
Language: eng
Format: azw3
Publisher: Packt Publishing
Published: 2017-09-29T04:00:00+00:00


AccountModel.find({ age: { $gt: 18, $lt: 30 } }, function(err, accounts) {

console.log(accounts.length); // => 2

console.log(accounts[0].username); // => randomUser1

mongoose.connection.close();

});

Here, we use the standard MongoDB commands $gt and $lt for the value of age when passing in our query parameter to find documents (that is, find any document where the age is above 18 and below 30). The callback function that executes after find references an accounts array, which is a collection of AccountModel objects returned from the query to MongoDB. As a general means of good housekeeping, we close the connection to the MongoDB server after we are finished.



Download



Copyright Disclaimer:
This site does not store any files on its server. We only index and link to content provided by other sites. Please contact the content providers to delete copyright contents if any and email us, we'll remove relevant links or contents immediately.