in SQL, you can increment a field with one query
UPDATE myTable SET field = field + 1 How to achieve the same in mongoose?
update I do this, but how do I add an increment there?
var _id = 1, _field = 5; model.update({ id : _id }, { field : _field });