Skip to content

Instantly share code, notes, and snippets.

@jpadilla
Created November 30, 2014 12:39
Show Gist options
  • Save jpadilla/5cbee41166c21ed2df3c to your computer and use it in GitHub Desktop.
Save jpadilla/5cbee41166c21ed2df3c to your computer and use it in GitHub Desktop.
HDN Queries
db.posts.find({
source: 'designer_news',
createdAt: {
$gte: ISODate("2014-07-07T00:00:00Z"),
$lt: ISODate("2014-07-08T00:00:00Z")
}
}, {_id:0, __v: 0, createdAt:0, updatedAt:0}).sort({
points: -1,
comments: -1
}).limit(5)
db.posts.find({
source: 'hacker_news',
createdAt: {
$gte: ISODate("2014-07-07T00:00:00Z"),
$lt: ISODate("2014-07-08T00:00:00Z")
}
}, {_id:0, __v: 0, createdAt:0, updatedAt:0}).sort({
points: -1,
comments: -1
}).limit(5)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment