我有一个集合 Notebook,其中嵌入了名为 Notes 的数组文档。样本
文件如下所示。
{
"_id" : ObjectId("4f7ee46e08403d063ab0b4f9"),
"name" : "MongoDB",
"notes" : [
{
"title" : "Hello MongoDB",
"content" : "Hello MongoDB"
},
{
"title" : "ReplicaSet MongoDB",
"content" : "ReplicaSet MongoDB"
}
]
}
我只想找出标题为“Hello MongoDB”的注释。我没有得到应有的东西
成为查询。谁能帮我。