How to query by datetime in Doctrine MongoDB ODM?

Node.js: How do range query in mongoose?

  • In mongodb javascript, i can use find({'datetime': {'$gt':  '2011-04-01', '$lt': '2011-04-09'}}) to do range query, but can i do  it in mongoose's find? Thanks

  • Answer:

    I have been helped mongoose to fix this problem, so the latest mongoose supports it.

Shawn Yang at Quora Visit the source

Was this solution helpful to you?

Other answers

First, in the Schema, you need to define the type of the date field to be: {date: { type: Date, default: Date.now }} then when u query for the date range: Model.find({"date": {'$gte': new Date('3/1/2014'), '$lt': new Date('3/16/2014')}}, callback);

Razmig Youssef

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.