Below is the code throwing error "TypeError: Object # has no method 'findAndModify'"
Please help me on this!
// defining schema for the "counters" table
var tableSchema = new Schema({
_id :String,
next:Number
});
// creating table object for the counters table
var counters_table = mongoose.model('counters', tableSchema);
var tableObj = new counters_table();
// the below code returns error as mentioned above.
var ret = tableObj.findAndModify({_id:'messagetransaction'}, [], {'$inc':{next:1}}, true,true, function(err) {
if (err){ throw err }else{ console.log("updated!") }
})
