Problems querying with findMany and relations
Hi. I started trying out drizzle (0.41.0) today and sql-like queries work pretty well. Unfortunately I have a problem with the findMany query when including relations.
I created a schema "studentsTable" and set a simple one-to-many relation at "dormId" to the schema "dormsTable". When querying with findMany() and trying to get the relation I always get
⨯ TypeError: Cannot read properties of undefined (reading 'referencedTable')
My query:
I added the schema to drizzle() initialization:
What am I doing wrong?
Thank you very much3 Replies
you need to make a
relations
object and pass it to the db
schema
the docs are not very goodDrizzle ORM - Relations
Drizzle ORM is a lightweight and performant TypeScript ORM with developer experience in mind.
This totally works 🥳
Thank you very much!