Type of query result is {}[]
Hi all! Loving using Kysely at the moment, it's super easy to use.
I ran into one problem, which I believe is probably a lack of understanding from myself around certain elements of TypeScript or Kysely itself.
Here is the DB Schema from
kysely-codegen
:
Here is a simplified version of a query (which is without any type errors). It also returns the results correctly from the DB:
I noticed that results
has the type {}[]
. I expected the result to be aware of what fields are contained in the returned objects.
Is there something specific I need to do in order to have the results array typed?
Or should I be casting it to a type I create myself?
Many thanks for your help!!!Solution:Jump to solution
It looks like the reassignment of
query
to itself was causing the issue. If I do something like this, the end result has the correct typing:
```
let queryBuilder;
...7 Replies
Unknown User•2y ago
Message Not Public
Sign In & Join Server To View
Hey @valtyrorn apologies, I made a mistake in simplifying my query for the example above. I edited the post to include that part. The query is all working and returning results sucessfully
Oh no, my message was too long 🙂 Here it is:
Solution
It looks like the reassignment of
query
to itself was causing the issue. If I do something like this, the end result has the correct typing:
The above example is slightly contrived. The reason I am using multiple statements to build the query rather than all in one block is because I have several if
conditions for which certain parts of the query should or should not be included.Type of a variable can't change. Reassignments after selects, joins and other method calls that change the query builder type can't work.
Thanks @koskimas what's the best way to add a conditional call onto the query chain?
For example, if only in specific cases I want to add an
.orderBy
callOnly joins, selections and returning method change the type. Others can be reassigned.
I see, so the issue was the line:
Thank you so much for clarifying!
Can confirm both of these work 🙂 Thank you! Makes sense now