I need to remove item in nested array, following is my document
{
"_id" : ObjectId("58760d8caa30c585ef8d3beb"),
"results" : [
{
"item" : "A",
"score" : 5.0,
"answers" : [
{
"q" : 1.0,
"a" : 4.0
},
{
"q" : 1.0,
"a" : 5.0
},
{
"q" : 2.0,
"a" : 6.0
}
]
},
{
"item" : "B",
"score" : 8.0,
"answers" : [
{
"q" : 1.0,
"a" : 7.0
},
{
"q" : 1.0,
"a" : 5.0
},
{
"q" : 2.0,
"a" : 9.0
}
]
}
]
}
I want to remove all item in answers which q equal 1.0, following is expect document:
{
"_id" : ObjectId("58760d8caa30c585ef8d3beb"),
"results" : [
{
"item" : "A",
"score" : 5.0,
"answers" : [
{
"q" : 2.0,
"a" : 6.0
}
]
},
{
"item" : "B",
"score" : 8.0,
"answers" : [
{
"q" : 2.0,
"a" : 9.0
}
]
}
]
}
I used:
db.getCollection('test').update({"results.answers.q":1},
{ $pull: {"results.$.answers": {q:1} } },
{ multi: true })
But got:
{
"_id" : ObjectId("58760d8caa30c585ef8d3beb"),
"results" : [
{
"item" : "A",
"score" : 5.0,
"answers" : [
{
"q" : 2.0,
"a" : 6.0
}
]
},
{
"item" : "B",
"score" : 8.0,
"answers" : [
{
"q" : 1.0,
"a" : 7.0
},
{
"q" : 1.0,
"a" : 5.0
},
{
"q" : 2.0,
"a" : 9.0
}
]
}
]
}
in item B there still have embed documents which q equal 1
How can I do?