Допустим, у меня есть следующие документы
Article { Comment: embedMany }
Comment { Reply: embedMany }
Reply { email: string, ip: string }
Я хочу сделать запрос, который выбирает различные Reply.ip
, где Reply.email = xxx
Что-то вроде этого, только это не такработа ..
db.Article.find("Comment.Reply.email" : "xxx").distinct("Comment.Reply.ip")
Экспорт JSON:
{
"_id":{
"$oid":"4e71be36c6eed629c61cea2c"
},
"name":"test",
"Comment":[
{
"name":"comment test",
"Reply":[
{
"ip":"192.168.2.1",
"email":"yyy"
},
{
"ip":"127.0.0.1",
"email":"zzz"
}
]
},
{
"name":"comment 2 test",
"Reply":[
{
"ip":"128.168.1.1",
"email":"xxx"
},
{
"ip":"192.168.1.1",
"email":"xxx"
}
]
}
]
}
Я запускаю : db.Article.distinct("Comment.Reply.ip",{"Comment.Reply.email" : "xxx"})
Я ожидаю : ["128.168.1.1", "192.168.1.1"]
Я получаю : ["127.0.0.1", "128.168.1.1", "192.168.1.1", "192.168.2.1"]