I\'m trying to select a document by id
I\'ve tried:
collection.update({ \"_id\": { \"$oid\": + theidID } } collection.update({ \"_id\": theidID } c
var mongo = require('mongodb'); var o_id = new mongo.ObjectID(theidID); collection.update({'_id': o_id});