假设我有一个json对象,如下所示:
{
"_id" : some mongo generated id,
"name" : "NEW NODE",
"example_list" : [{
"_id" : "1.3.12.2.1107.5.99.3.30000008061114424970500000589",
"Index" : 0,
"Type" : "Study"
}, {
"_id" : "cc7e1966-e885-4a9a-8077-c3489118938d",
"Index" : 1,
"Type" : "TestCase"
}]
}
现在我要从"Type"
中的"example_list"
删除mongo shell
。
有没有办法在mongo shell中做到这一点?
我找到了一些脚本,但它没有在mongo shell上工作我更倾向于在mongo shell上这样做,但其他方法也没关系。