Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a json object as following:

{ "_id" : ObjectId("508806803bb97dc546e6f307"), "user_name" : "user1", "user_id" : 45645645, "likes" : [ { "event_id" : NumberLong("4578541212") },{ "event_id" : NumberLong("4578541213") } ], "dislikes" : [ ] }

I'm trying to delete specific event within likes array via java drivers tried doing this first in shell:

> db.users.update( {'likes.event_id' : 4578541212}, { '$unset':{'likes.event_id'
:1}})

with no luck...how can I manage doing that?

share|improve this question
Do you want to remove the event_id field from the array element (leaving an empty element) or remove the element itself? – JohnnyHK Oct 24 '12 at 20:24

1 Answer

up vote 0 down vote accepted

If you want to just remove the event_id field from the array element:

db.users.update( {'likes.event_id' : 4578541212}, {'$unset':{'likes.$.event_id' :1}})

Use the $pull operator to delete the element:

db.users.update({'likes.event_id': 4578541212}, {'$pull':{likes: {event_id: 4578541212}}})
share|improve this answer
thanks alot it worked, but I have another question: as I executed the command you suggested the whole record was messed up (fields switch places), any idea why is this happning? – Ranco Oct 24 '12 at 20:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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