: "this is my title" , author : "bob" , posted : new Date(1079895594000) , pageViews : 5 , tags : [ "fun" , "good" , "fun" ] , comments : [ { author : "steve" , ts : "4/1/12", text: "I like your post"} ] } > db.posts.aggregate( { $project : { title : 1, author : 1, "comments.author" : 1 }} ) result : [{ title : "this is my title" , author : "bob" , comments : [author : "steve"] }]