Mongoose query a populated field

和自甴很熟 提交于 2019-12-18 05:50:27

问题


   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.


回答1:


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.



来源:https://stackoverflow.com/questions/17535587/mongoose-query-a-populated-field

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!