Filter Empty Relations out
I got both tables as defined in my schema file:
How could I query all Employees that has availabilities?
An simple query as this one:
Would also return empty availabilities, filtering out the result after the query will result in inconsistencies in the result size. How could I resolve that?
2 Replies
Switch
{availabilities: true}
to a where
that uses one of the following:
https://orm.drizzle.team/docs/operators#exists
https://orm.drizzle.team/docs/operators#isnotnullDrizzle ORM - Filters
Drizzle ORM is a lightweight and performant TypeScript ORM with developer experience in mind.
Actually both I think that wouldn't work in this case
As Drizzle doesn't allow to access fields from relations
I solved it this way:
Then, in the where clause I added:
inArray(EmployeesTable.id, employessWithAvailabilities)
Unsure about the performance-wise or if there's better ways to write it, that was the only way I could make it work as I intended
The whole function is right here