Drizzle Team

DT

Drizzle Team

The official Discord for all Drizzle related projects, such as Drizzle ORM, Drizzle Kit, Drizzle Studio and more!

Join

`returning` does not allow arguments according to typescript

Hi everyone, I'm seeing a weird typescript error while using the returning function on an insert query. I have the following code: ```typescript public async create(user: NewUser): Promise<User> { const [createdUser] = await this.client...
No description

how to disambiguate query relations

Hi everyone, I'm currently facing an issue with the Query API where I don't understand how to disambiguate a foreign key. I have the following schema: ```typescript const baseFields = { id: uuid('id').primaryKey().defaultRandom(),...

Alerting if there is conflict

I'm doing an insert and wanted to ask whether there is a specific error type that is returned when there is a conflict. Pseudo-code of what I would want ```ts await db.insert(guild).values({ id: interaction.guildId })...

Error starting Drizzle Studio.

Hi, I am new to drizzle, and rand into some issues starting drizzle studio, mentioned below. ``ules/drizzle-orm/index-1899b9ae.cjs:4180 throw new Error(There is not enough information to infer relation "${sourceTableTsName}.${relation.fieldName}"`); ^ ...
No description

Is it possible to use the "unaccent" extension with drizzle?

hello, I wanted to make an ilike comparison in my query for the letter %á%, but it does not match for %Á%, because afaik, they are regarded as two different letters by postgres. I asked chatgpt, who told me to use the "unaccent" extension to remove the accents before the comparison to get good results. Is this really the way to go? If yes, how could I integrate it with drizzle? I just want to query usernames without worrying about casing :DD

Insert Schemas with onConflictDoUpdate

I'm trying to leverage the onConflictDoUpdate method to update a record if it already exists. The problem is that I create an insert schema with drizzle-zod that enforces the non nullable fields are set. In the case where the record already exists, it is valid to pass in partial data to my function, but that then fails the insert schema validation. Is there any way to parse the insert schema only if there is no conflict? My current workaround is to separate the insert and update logic....

[Error] Using Drizzle with Neon DB

Is drizzle compatible with neon pooled connections? Neon pooled connections don't support prepared statements, and it seems like drizzle uses prepared statements internally for all requests, but I'm not sure. https://github.com/drizzle-team/drizzle-orm/blob/main/drizzle-orm/src/pg-core/query-builders/select.ts#L537 https://neon.tech/docs/connect/connection-pooling...

Migrations folder location?

Should the migrations folder be location somewhere in the src directory? Right now I’m experiencing errors with the migrate function trying to use the migrations folder in the root directory,. Copying the folder into src works (though i am now experiencing an unrelated error)

connection error, fetch failed

not sure if this issue comes from drizzle or planetscale but I'm getting this error while trying to do any queries from my db while on local dev ``` { e: TypeError: fetch failed at Object.fetch (node:internal/deps/undici/undici:11576:11)...

Creating a Case-Insensitive Unique Index

I want to be able to select a user by their username but have usernames be case insensitive: ```ts const user = await db.select() .from(users)...

Drizzle update enum

Hi everyone I am currently playing with drizzle and enum with postgres. However it doesn't seems to allow update ? For example with this code: ```ts export const updateExerciseTag = (tags: Exercise["tags"]) => { console.log(tags); // ['chest','legs']...
No description

many to many relation with uuid's

i'm trying to create a many to many relation with uuids. if i try to push the changes to the database (pg) i got the following error: ``` error: column "userId" cannot be cast automatically to type uuid { length: 179,...

GIN index

index('content_json_index').on(content).using('gin'), how do i do gin index on jsonB? postgres....

drizzle-kit bindings error with bun using local sqlite file

When I use my local sqlite file instead of my Turso DB, I get an error running bunx drizzle-kit push:sqlite The command works fine when using Turso. I use Bun version 1.0.2...

Upsert question

I'm retrieving orders every 30 minutes that may be the same or some may be updated so I want the row to just update with the new information but I don't know how to do that, in the docs it only shows updating all the rows with a set value. Is there a way to update each row with the new data? I've attached an image to give an understanding of what im wanting
No description

How do relational queries work under the hood?

Just trying to further my understanding of how drizzle works - how would the following relational query be written using the sql-like drizzle syntax? ```ts const post = await db.query.posts.findFirst({ with: {...

One to Many problem

I am trying to make a form that let's you add a product, with different variants. Example Product: Journal, Variants (blue journal, red journal). So I made two schemas and enforced a one-to-many relation. Now the problem is...I can create a product without having a variation. What would be a good solution for this, where a user needs to upload at least one variant, but can also have an array of variants to be uploaded? ```javascript import { InferSelectModel, relations } from "drizzle-orm"; import {...

Type support for porting Kysely jsonArrayFrom to Drizzle

I am trying to port this functionality from kysley to Drizzle, but I am struggling getting the typing to work. Kysely function: ``` export function jsonArrayFrom<O>(...

Missing types for modules

Hello. I'm trying to setup drizzle-orm's fork on my local machine but stuck on step of installing dependecies (or something, I believe) in tests. Run commands: - pnpm i - pnpm run b - pnpm run pack...
No description

Inferred Types not picking up Relations

I'm having issues with my inferred types from the "Core Type API" not picking up relations. I am trying to model a 1-to-Many relationship between users and assignments . A user can "create many" assignments. My query looks like this: ```TypeScript...