Skip to content

Instantly share code, notes, and snippets.

@darkmavis1980
Created July 21, 2019 00:48
Show Gist options
  • Save darkmavis1980/a9c4fa3988715d6200b008b49186c69e to your computer and use it in GitHub Desktop.
Save darkmavis1980/a9c4fa3988715d6200b008b49186c69e to your computer and use it in GitHub Desktop.
Mongodb: Show most recent events by a sub document
db.getCollection('competitions').aggregate([
{
$unwind: '$matches'
},
{
$sort: { 'matches.date': -1 }
},
{
$limit: 3
}
])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment