I'm trying to query a full mongodb field but without an intern field, like this document example:
{
_id: ObjectId('x8234728x8z8381'),
Example: {
field1: 'first',
field2: 'second',
field3: {
field 3.1: 'third'
}
}
}
I would like to return all "Example" field, but without "$field2". Is it possible in mongodb?

$? It's doable, but why use$and then have to worry about possible consequences?