
Sep 8, 2023
How to filter on date ranges in Prisma
When fetching records from your database, it’s very common to want to filter records based on date ranges. Fortunately, the Prisma ORM makes this very easy with filter conditions and operators.
When working with date columns, you’ll most commonly be using gt
(greater than), gte
(greater than or equal to), lt
(less than), and lte
(less than or equal to). When used in conjunction, these let you write where clauses that filter records based on any date range.
Filter records after a certain date
If you need to filter records after a certain date, you can use either the gte
or gt
operator depending on your use case. If you want to include the specified date you should use gte
, otherwise you should use gt
.
Here’s an example of fetching post
records that were created on or after August 1, 2023.
Filter records before a certain date
Similarly, if you want to filter records before a certain date, you can use either the lte
or lt
operator.
Here’s an example of fetching post
records that were created on or before August 31, 2023.
Filter records between a date range
Putting this together, if you want to filter records between a start and end date, you can use both gte
/gt
and lte
/lt
in conjunction.
Here’s an example of how you would fetch all posts created in the month of August.
Filtering in Prisma
Now you can use these filter operations to fetch records from your database using Prisma.
If you need to do any other kinds of complex filtering in Prisma, you should check out the official Prisma Client API reference.