Optional filtering
I'm trying to figure out the right pattern to reproduce an SQL query where the user can optionally filter based on a column value. For example, assuming a
The corresponding pattern in Drizzle is not obvious because neither
Does anyone have a good way to do this?
chunks table with a documentId column, you could write the queryThe corresponding pattern in Drizzle is not obvious because neither
isNull or and/or can accept JS values as options, only SQL columns. So the following pattern doesn't work:Does anyone have a good way to do this?