Skip to content

Instantly share code, notes, and snippets.

@aheckmann
Created April 17, 2012 15:09
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save aheckmann/2406640 to your computer and use it in GitHub Desktop.
Save aheckmann/2406640 to your computer and use it in GitHub Desktop.
var mongoose = require('mongoose');
var Schema = mongoose.Schema;
mongoose.connect('localhost', 'testing_querybydate');
var schema = new Schema({
created: Date
, data: {}
});
var A = mongoose.model('A', schema);
mongoose.connection.on('open', function () {
var a = new A({ created: new Date });
a.save(function (err, a) {
if (err) return console.error(err.stack||err);
A.find({ created: { $lte: new Date('2012-05-16T20:54:35.630Z') }}, function (err, docs) {
if (err) console.error(err.stack||err);
console.error('found', docs);
mongoose.connection.db.dropDatabase(function () {
mongoose.connection.close();
});
});
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment