kysely icon indicating copy to clipboard operation
kysely copied to clipboard

A type-safe typescript SQL query builder

Results 204 kysely issues
Sort by recently updated
recently updated
newest added

I am brand new to Kysely and looking to implement in our new sqlite project. I was on the homepage and started playing with the playground on the homepage and...

documentation

Hi everyone! Thanks for such a great library! Could you please add "returning" functionality for MySQL? MySQL supports it from version 8.0.27 Thanks!

mysql
built-in dialect
greenlit

Currently, there is no way of adding block comments using query builder. A **comment** method would be very useful for data intensive, saas type of apps. **My Proposal** ```javascript await...

Hey there! 👋🏻. I've started using Kysely recently after using Django for quite some time and I found it to be quite nice, thanks! However, I'm having problems when executing...

This is kind of an extension to #1169; the example query used in that issue was: ```SQL MERGE INTO heroes AS h USING (VALUES ('Wade', 'Wilson', 'Deadpool')) AS v(first_name, last_name,...

I am trying to extend kysely using module augmentation, but I am missing the types `SimplifyResult` and `SimplifySingleResult` which are not exported from `type-utils´. Is there a reason why `Simplify`...

Hey team! This PR addresses an issue where the `Migrator` would unexpectedly fail if initialized with a Kysely `Transaction` instance (`trx`) while `disableTransactions` was set to `true`. The Migrator was...

Hey :wave: closes #482. We're going for a shallow approach - no recursion: 1. Recursion would be very expensive at compile time. 1. JSON results of nested JSON helpers should...

bug
typescript
helpers