I am very new to mongoDB.
i have this collection here:
{ name: Peter salary: 3000 }, { name: Marry salary: 2000 }, { name: Sally salary: 1000 }
What should I do if I want to increase all salaries by 500?
I tried db.bounties.update({},{$inc: { salary: 500}}) but only the first one got updated