Queries

Documents can be retrieved through several static helper methods of models.

Any model method which involves specifying query conditions can be executed two ways:

When a callback function:

  • is passed, the operation will be executed immediately with the results passed to the callback.
  • is not passed, an instance of Query is returned, which provides a special QueryBuilder interface for you.

Let’s take a look at what happens when passing a callback:

  1. var Person = mongoose.model('Person', yourSchema);
  2. // find each person with a last name matching 'Ghost', selecting the `name` and `occupation` fields
  3. Person.findOne({ 'name.last': 'Ghost' }, 'name occupation', function (err, person) {
  4. if (err) return handleError(err);
  5. console.log('%s %s is a %s.', person.name.first, person.name.last, person.occupation) // Space Ghost is a talk show host.
  6. })

Here we see that the query was executed immediately and the results passed to our callback. All callbacks in Mongoose use the pattern: callback(error, result). If an error occurs executing the query, the error parameter will contain an error document, and result will be null. If the query is successful, the error parameter will be null, and the result will be populated with the results of the query.

Anywhere a callback is passed to a query in Mongoose, the callback follows the pattern callback(error, results). What results is depends on the operation: For findOne() it is a potentially-null single document, find() a list of documents, count() the number of documents, update() the number of documents affected, etc. The API docs for Models provide more detail on what is passed to the callbacks.

Now let’s look at what happens when no callback is passed:

  1. // find each person with a last name matching 'Ghost'
  2. var query = Person.findOne({ 'name.last': 'Ghost' });
  3. // selecting the `name` and `occupation` fields
  4. query.select('name occupation');
  5. // execute the query at a later time
  6. query.exec(function (err, person) {
  7. if (err) return handleError(err);
  8. console.log('%s %s is a %s.', person.name.first, person.name.last, person.occupation) // Space Ghost is a talk show host.
  9. })

An instance of Query was returned which allows us to build up our query. Taking this example further:

  1. Person
  2. .find({ occupation: /host/ })
  3. .where('name.last').equals('Ghost')
  4. .where('age').gt(17).lt(66)
  5. .where('likes').in(['vaporizing', 'talking'])
  6. .limit(10)
  7. .sort('-occupation')
  8. .select('name occupation')
  9. .exec(callback);

References to other documents

There are no joins in MongoDB but sometimes we still want references to documents in other collections. This is where population comes in. Read more about how to include documents from other collections in your query results here.

Streaming

Queries can be streamed from MongoDB to your application as well. Simply call the query’s stream method instead of exec to return an instance of QueryStream. Note: QueryStreams are Node.js 0.8 style read streams not Node.js 0.10 style.

Next Up

Now that we’ve covered Queries, let’s take a look at validation.