Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Mongoose query a populated field

   db.History.find({'_file.project': 'someproject' )
      .populate('_file', 'name reference project')
      .sort(sortField || '-created')
      .limit(max || 64)
      .exec(this);

Here I'm trying to find all documents which match on a populated field from the _file reference. Is doesn't seem to work. Is something like this possible at all?

I could duplicate the project field to this object, as a workaround just for querying but I'd rather not of course.

like image 945
Thijs Koerselman Avatar asked Jul 08 '13 20:07

Thijs Koerselman


1 Answers

No, a find query's conditions parameter can only reference the collection being queried.

populate is not a join, it's just a convenience function to follow up the main query with additional queries to pull in the associated data from other collections.

like image 145
JohnnyHK Avatar answered Nov 14 '22 02:11

JohnnyHK