Marco Wettstein

Results 325 comments of Marco Wettstein

i am fine as the formatter does a great job on adding these fields automatically

even on a simple findUnique, prisma leads to a colscan on the DB (!). I seriously think prisma team should either fix this immediatly or deprecate the mongodb support or...

> We manually got rid of all `in` places and use `OR` for now. It is a bit verbose, but does the job. I primarily introduced prisma as a lever...

@jkomyno you added the bug labels, could you also add performance labels? since that is anyway a current roadmap topic

> No one from the team has confirmed the issue by running the provided code himself and seen the described problem, that simple. And please make sure you manage your...

i also have found a `some` query which leads to another colscan ``` // prisma.schema model Company { id String @id @map("_id") // ... participations CompaniesParticipations[] @@map("companies") } type CompaniesParticipations...

even a simple findUnique on the primary key leads to a full table scan ! https://github.com/prisma/prisma/issues/22812 also see https://github.com/prisma/prisma/issues/14871 there are a lot of mongodb performance issues that I was...

we published an app to production using mongodb and prisma, unfortuantly those performance problems have been detected too late. let's be clear: those problems are very, very, VERY severe and...

the error also happens when you eject the Library, the button's icon isn't styled properly

as a partial fix, i added this to the generated gluestack-ui.config.ts: ``` type Config = typeof config; declare module "@gluestack-style/react" { interface ICustomConfig extends Config {} } ``` in some...