Skip to content

Instantly share code, notes, and snippets.

@mumunuu
Last active March 16, 2021 13:54
Show Gist options
  • Save mumunuu/b7aac4ce613e469236f7430dd462f132 to your computer and use it in GitHub Desktop.
Save mumunuu/b7aac4ce613e469236f7430dd462f132 to your computer and use it in GitHub Desktop.
mongodb-pagination-2
db
.myCollection1
.aggregate([
{
"$match": {
"status": true
}
},
// case1
{
"$lookup": { ...생략}
}
{"$sort": {"publishedAt" : -1}},
{"$skip": 20},
{"$limit": 20},
// case2
{
"$lookup": { ...생략}
}
])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment