how to use projection to show limited attributes of tablein mongodb code example
Example: mongodb select fields
db.inventory.find( { status: "A" }, { item: 1, status: 1 } )
db.inventory.find( { status: "A" }, { item: 1, status: 1 } )