Digamos que tengo los siguientes documentosmongoDB distinct y ¿en la misma consulta?
Article { Comment: embedMany }
Comment { Reply: embedMany }
Reply { email: string, ip: string }
Quiero hacer una consulta que selecciona distinta Reply.ip
donde Reply.email = xxx
Algo como esto, sólo que no funciona ..
db.Article.find("Comment.Reply.email" : "xxx").distinct("Comment.Reply.ip")
JSON export:
{
"_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"
}
]
}
]
}
corro: db.Article.distinct("Comment.Reply.ip",{"Comment.Reply.email" : "xxx"})
espero: ["128.168.1.1", "192.168.1.1"]
me sale: ["127.0.0.1", "128.168.1.1", "192.168.1.1", "192.168.2.1"]
tener mi upvote para el "corro", "espero "," Obtengo ", ¡si todas las preguntas tuvieran el formato de esta manera! – adelriosantiago
Aquí hay una variante de la solución http://stackoverflow.com/a/13864518/358013 – blueskin