find query mongodb code example
Example 1: and operation mongodb find
db.inventory.find( { $and: [ { price: { $ne: 1.99 } }, { price: { $exists: true } } ] } )
Example 2: query mongodb
db.inventory.find( { status: "D" } )
Example 3: query mongodb
db.inventory.find( {} )