Query result type mismatch
For unknown to me reason kysely adds
categoryId
to nested object built with jsonObjectFrom
or maybe it does not take related table, but copies selectFrom
table.
Why does it happen?
https://kyse.link/0sjoX
That type is different compared to my database state and generated interfaces with kysely-codegen
it should be:

3 Replies
Solution
Use
selectAll('product_category')
instead of selectAll()
in the subqueryhttps://kyse.link/Z1ZBq
I implemented
selectAll
that way because I think some dialects actually select the parent columns as well if you use *
. But I might've been wrong about that and it's actually just implemented wrong.
But It's better to use table.*
than *
anyway. It's more specific and often makes the query easier to read.Got it! That makes sense now. Thanks for the clarification! Using
table.*
does seem like a better approach for readability and consistency. Appreciate the help! 🙌