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