and find mongodb code example
Example 1: and operation mongodb find
db.inventory.find( { $and: [ { price: { $ne: 1.99 } }, { price: { $exists: true } } ] } )
Example 2: and in mongodb
{ $and: [ <expression1>, <expression2>, ... ] }
db.inventory.find( { $and: [ { price: { $ne: 1.99 } }, { price: { $exists: true } } ] } )
{ $and: [ <expression1>, <expression2>, ... ] }