hey devs… how do I query for a date in the future?...
# orm-help
c
hey devs… how do I query for a date in the future? I tried:
Copy code
where: {
  date_: {
    gte: Date.now()
  }
}
I also tried
new Date().getTime()
but it keeps failing. Any ideas?