show dbs
use <database\_name>
show collections
db.<collection\_name>.remove({})
db.<collection\_name>.find({"offers.@type":"SingleOffer"}})
db.user.find()
db.user.find({"offers.offers.offerID":"1", "productID":"1"})
The follwing command updates the type of the nested under offer. Given:
{
"\_id" : "1",
"offer" : {
"@type" : "foo",
(...)
}
, do:
db.user.update({"\_id":"1"}, {$set:{"foo.@type":"bar"}})