Skip to content

Instantly share code, notes, and snippets.

@mosluce
Created May 17, 2016 07:35
Show Gist options
  • Save mosluce/101f015688b73554a68bf34e2a141aa3 to your computer and use it in GitHub Desktop.
Save mosluce/101f015688b73554a68bf34e2a141aa3 to your computer and use it in GitHub Desktop.
db.books.aggregate({
$sort: {
date: -1
},
$group: {
_id: '$type',
type: {
$first: '$type'
},
name: {
$first: '$name'
}
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment