Is it possible to use Dot Notation when dealing with nested documents?
http://www.mongodb.org/display/DOCS/Dot+Notation+(Reaching+into+Objects)
I'm trying to query the results of a map/reduce and therefore need to run a query like this:
find({'_id.page' : 'ThisPage', '_id.user' : 'AUser'})
Trying this in Node code returns no rows but the same query works as expected in mongodb shell.