Drizzle relational query, filters
I'm trying to add some simple filters to my query, as according to https://orm.drizzle.team/docs/rqb#select-filters
I've tried both
I've tried both
where: eq(users.id, 1) syntax, and where: (users, { eq }) => eq(users.id, 1), - both result in

Drizzle ORM | %s