I am trying to do a simple update
Collection.update(id, {$set:{name:value}});
or even
Collection.update({'_id':id}, {$set:{name:value}});
But the collection will not be updated if id is the traditional mongodb identifier. This seems to work only with the self-identification of unique identifiers. How can I fix this. Is it possible for a meteorite to adopt its own mango identifier structure?
mongodb meteor
Akshat
source share