mongodb get all in collection code example
Example 1: get all data in collection mongodb
db.collection_name.find().pretty()
Example 2: operator to return specific data of a mongodb query
db.inventory.find( { status: "A" }, { item: 1, status: 1 } )