I'm using the Mongoose Library for accessing MongoDB with node.js

Is there a way to remove a key from a document? i.e. not just set the value to null, but remove it?

User.findOne({}, function(err, user){
  //correctly sets the key to null... but it's still present in the document
  user.key_to_delete = null;

  // doesn't seem to have any effect
  delete user.key_to_delete;

  user.save();
});
link|improve this question

78% accept rate
I thought I had found it, but after some tests: probably not. This has some good discussion on the topic though. groups.google.com/group/mongoose-orm/browse_thread/thread/… – Stephen Aug 15 '11 at 15:28
LOL nevermind, I guess this was your post! – Stephen Aug 15 '11 at 15:31
Actually it was mine :) – emostar Aug 22 '11 at 22:26
feedback

6 Answers

up vote 5 down vote accepted

You need to drop down the node-mongodb-native driver. Each model has a collection object that contains all the methods that node-mongodb-native offers. So you can do the action in question by this:

User.collection.update({_id: user._id}, {$unset: {field: 1 }});
link|improve this answer
This has been fixed in Mongoose 2.X, so you can leave the collection out. – emostar Nov 13 '11 at 22:30
What's the fix? How does one do it. I've read the docs I have. – grantwparks Apr 2 at 0:31
feedback

You'll want to do this:

User.findOne({}, function(err, user){
  user.key_to_delete = undefined;
  user.save();
});
link|improve this answer
2  
That will just set it to null - not what the OP is asking for. – Ian Henry Jun 30 '11 at 20:34
3  
As of version 2.4.0 setting a document key to undefined will pass the $unset to mongodb aaronheckmann.posterous.com/mongoose-240 – James Moore Apr 6 at 23:49
feedback

At mongo syntax to delete some key you need do following:

{ $unset : { field : 1} }

Seems at Mongoose the same.

Edit

Check this example.

link|improve this answer
Can you clarify this answer and give a code example that relates to the example code above? – Daniel Beardsley Jan 4 '11 at 22:55
sorry but i am not expereinced at mongoose. Above syntax it's mongo syntax, so i suppose that driver for any language support this. I found some example, check it in my answer. – Andrew Orsich Jan 4 '11 at 23:34
feedback

This removes the entire db named User.

User.remove({}, function() {});

link|improve this answer
2  
That's not what the question is asking. – Daniel Beardsley Jan 4 '11 at 22:47
feedback

Could this be a side problem like using

function (user)

instead of

function(err, user)

for the find's callback ? Just trying to help with this as I already had the case.

link|improve this answer
feedback

i used the following to purge an uppercase key in one fell swoop:

 Account.unset({}, :MSID)

For the full example:

def self.purge_msid_key
  uppercase_msid_acts = Account.where(:MSID.exists => true).count
  if uppercase_msid_acts > 0
    Account.unset({}, :MSID)
  end
end
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.