Roman Kushyn
Roman Kushyn
For me `react-native doctor` was showing that "Android Studio not found" and "Android SDK" is not found. And I even could not google anything how it tries to find it....
I'm very grateful to all of you who have left inspiring comments, who have starred the project, and who are looking forward to its growth! For me this means a...
Hello dear maintainers, I found an incorrect typing in the [Not null](https://kysely.dev/docs/examples/select/not-null) docs: ```ts jsonObjectFrom( eb.selectFrom('pet') // the problem is in this selectAll: .selectAll() .limit(1) .whereRef('person.id', '=', 'pet.owner_id') ).$notNull().as('pet') ```...
Hi all, I need you opinion on redesigning of chaining relations for querying. The current way of doing this: ```ts db.user.profile // it's a profile query // load all profiles...
The current way of defining tables is weird, to say the least. You can't simply tell TS that books belong to authors and authors have many books, because TS is...
JS numbers are imprecise, so you have define custom parsers, use an additional library ([decimal.js](https://www.npmjs.com/package/decimal.js)). This should be covered in docs. @IlyaSemenov could you share if you have encountered any...
Change `belongsTo` nested create and other nested methods to be performed on the same query as the main operation. Because currently it works in regular updates and creates, but cannot...