I am not familiar with kysely plugin creation. I am also not sure if my issue can be done with such a plugin. My aim is to have overload method like this:
.selectAll('t1', 'prefix_t1')
.selectAll('t1', 'prefix_t1')
so the resulted query will be:
select t1.column1 as "prefix_t1.column1", t2.column2 as "prefix_t1.column2", etc.
select t1.column1 as "prefix_t1.column1", t2.column2 as "prefix_t1.column2", etc.
would it be possible with plugins or any other (even existing) solution in kysely?
First came Kysely, the type-safe query builder for TypeScript, then came people asking questions, then came the Discord server.Join if you like Kysely or have questions, or both.