aggregate
क्या आपका जवाब है
db.foo.aggregate({"$project" : {"two" : "$friends.two"}}).result
ऐसा करने का एक और तरीका है (अलग-अलग मान प्राप्त करना)
db.foo.aggregate([
{'$project': {
union:{$setUnion:["$friends.two"]}
}
}
]).result;