Skip to content
Advertisement

Sequelize Where statement with date

I am using Sequelize as my backend ORM. Now I wish to do some WHERE operations on a Date.

More specifically, I want to get all data where a date is between now and 7 days ago.

The problem is that the documentation does not specify which operations you can do on Datatypes.DATE

Can anyone point me in the right direction?

Advertisement

Answer

Just like Molda says, you can use $gt, $lt, $gte or $lte with a date:

JavaScript

If you’re using v5 of Sequelize, you’ve to include Op because the key was moved into Symbol

JavaScript

See more sequelize documentation here

Advertisement