I use mongodb on my site.When I try to run "findAndModify" function I always get that doc is 'undefined':
function counter(name) {
var doc = this.db.collection('counter').findAndModify(
{ query: { _id: name },
update: { $inc: { next: 1} },
new: true,
upsert: true });
return doc.next;
}
Q: What am I missing?