mongodb shell command select field code example
Example 1: show collection data in mongodb
db.collectionName.find()
Example 2: return only specific fields mongodb
db.inventory.find( { status: "A" }, { item: 1, status: 1 } )
db.collectionName.find()
db.inventory.find( { status: "A" }, { item: 1, status: 1 } )