Hello guys! I want to search through a DateTime fo...
# orm-help
t
Hello guys! I want to search through a DateTime for a specific date in Date format, in SQL I should do it with a between, how can I do it with the ORM?
r
@Tomas Jais 👋 You can use
gte
and `lte`:
Copy code
where: {
  date: { gte: somedate, lte: somedate2 }
}