Skip to content

Instantly share code, notes, and snippets.

@bigfei
Last active October 15, 2015 22:45
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bigfei/8e16ae9f1a9ff245bcdb to your computer and use it in GitHub Desktop.
Save bigfei/8e16ae9f1a9ff245bcdb to your computer and use it in GitHub Desktop.
mongodb aggregate push
db.getCollection('test').aggregate(
{ $group:
{ _id: "$id",
articles: { $push: {dId:"$dId", time:"$time"} }
}
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment