📆
Prisma で期間で where する方法
結論
const data = await client.post.findMany({
where: {
createdAt: {
gte: new Date("2020-01-01"),
lt: new Date("2020-01-02")
},
},
});
lt
(less than) gt
(greater than) など where 句で使えるものがあり、これは date 型にも適用できます。
Discussion