Maarten

Results 53 comments of Maarten

What is the status on pgvector in drizzle on this day?

I'm not seeing nor hearing about any pgvector updates from Drizzle. So yes, Prisma might win this one (for now).

Maybe a stringed variant of the schema satisfies your needs?

> If you guys are still trying to figure out how to implement this package into **nextjs**, here how can you do that avoiding the windows undefined error. > >...

Just making the fields optional and or nullable is not enough? Combined with a .passtrhough should be plenty.

I suppose you could make a `warn` function that takes a zod schema and never errors, but that destroys your request, so the way I see it, this could be...

> > I suppose you could make a `warn` function that takes a zod schema and never errors, but that destroys your request, so the way I see it, this...

I think the prefered way of using it / the perfect solution would be something like: ```ts //simple interface or type with any properties, most likely generated interface Human {...

> However, then your TS types become the source of truth, and those are less expressive than what zod provides. Let's say you have a database and an ORM to...

> This is still boilerplatey, but what about something like this? > > ```ts > interface Car { > make: string; > model: string; > } > > const Car...