Skip to content

Instantly share code, notes, and snippets.

@akotlov
Forked from guilleferrer/Date Range Mongo Query
Created July 31, 2016 20:40
Show Gist options
  • Save akotlov/fd19d79a57537c5072721ab47bf0befb to your computer and use it in GitHub Desktop.
Save akotlov/fd19d79a57537c5072721ab47bf0befb to your computer and use it in GitHub Desktop.
Query for a date range using Mongo Timestamps
db.Collection.find({
created_at : {
'$gte': new Timestamp(new Date(2012, 0, 21), 0),
'$lte': new Timestamp(new Date(2012, 0, 22), 0)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment