I’d like to atomically remove an item from an array. I was looking at using findAndModify but I’m not sure how that would work. Any direction on how to atomically remove an item from an array in a doc would be much appreciated!
Thanks!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use the
$pulloperator in anupdateorfindAndModifyfor that:This would remove the
'bar'element from thefooarray field of the document matching{_id: id}.