should i pass the dates in a different way?
# orm-help
a
should i pass the dates in a different way?
c
try putting lte before gte
a
same behaviour
I also tried to imitate this simple code from prisma docs:
Copy code
const result = await prisma.post.findMany({
  where: {
    date_created: {
      gte: new Date(
        '2020-03-19T14:21:00+0200'
      ) /* Includes time offset for UTC */,
    },
  },
})
but its same case also
Maybe you need to change the date format?
a
i have tried like that but it crashes if its not string or date format
n
@Alban Kaperi Is your repository open source, if yes I could try to reproduce it locally and investigate it.