drizzle-orm
drizzle-orm copied to clipboard
Headless TypeScript ORM with a head. Runs on Node, Bun and Deno. Lives on the Edge and yes, it's a JavaScript ORM too 😅
In Node.js if you are using ES modules (by either having an `.mjs` / `.mts` file, or adding `"type": "module"` in the `package.json`), importing the various `drizzle-orm` modules has to...
### What version of `drizzle-orm` are you using? 0.24.2 ### What version of `drizzle-kit` are you using? 0.17.5 ### Describe the Bug Right now drizzle has JSON under `blob` when...
### What version of `drizzle-orm` are you using? 0.25.4 ### What version of `drizzle-kit` are you using? 0.17.6 ### Describe the Bug After updating to the latest version of `drizzle-orm`,...
### Describe want to want The idea is to use [AsyncLocalStorage](https://nodejs.org/api/async_context.html) for automatically detecting transaction context, without using transaction object. Example how it should look like: ```typescript await db.transaction(async ()...
I just went through this document a few days ago and found it a bit confusing being new to drizzle. I went ahead and cleared up the confusing parts, which...
Closes #251.
### Describe want to want Currently when do a query similar to the following the return type is `T[]`. ```ts const result: User[] = await db .select() .from(users) .where(eq(users.email, email))...