operator to return specific data of a mongodb query

Solutions on MaxInterview for operator to return specific data of a mongodb query by the best coders in the world

showing results for - "operator to return specific data of a mongodb query"
Alban
25 Jan 2020
1db.inventory.find( { status: "A" }, { item: 1, status: 1 } )
2
similar questions