Posts by João Víctor Carvalho • 1 point
2 posts
-
0
votes1
answer99
viewsA: Recover DB data from a certain date
I found a solution that solved my problem: I used Sequelize Operators. For that, I imported it: import { Op } from "sequelize"; And in the code snippet where I retrieve the db data and store it in…
-
-1
votes1
answer99
viewsQ: Recover DB data from a certain date
I am creating an api in Node.js, using express and Sequelize as ORM. I would like to know, which expression should I use to recover DB data from a certain date. I’m using the date-fns to determine…