Im trying to do a simple update
Collection.update(id, {$set:{name:value}});
or even
Collection.update({\'_id\':id}, {$set:
You're right: Meteor's DDP protocol doesn't support non-JSON types such as Mongo ObjectId. We know this is a problem: it's our oldest open issue and it's on our roadmap.
While there are definitely some "easy" quick fixes that would resolve this issue, we'd prefer to do this in the context of extending our protocol to handle other non-JSON types (dates, binary blobs, etc) rather than a specific short-term hack.