finding by sub property of an object in mongodb code example
Example: finding by sub property of an object in mongo
db.messages.find( { headers : { From: "[email protected]" } } )
This queries for documents where headers equals { From: ... }, i.e. contains no other fields.
db.messages.find( { 'headers.From': "[email protected]" } )
This only looks at the headers.From field, not affected by other fields contained in, or missing from, headers.