Matt Kindy

Results 42 comments of Matt Kindy
trafficstars

Given the issue I described in https://github.com/MichalLytek/typegraphql-prisma/issues/10#issuecomment-1137308858, this seems like a good strategy to resolve it. I'm going to look into this futher

Just want to add more information to this thread since this is causing us problems at a very inopportune time -- I had this working in our project (under a...

I managed to transpile my code and use `node` directly. I set my `stack-size` option to 1200 for now, and that's enough to get past the error for now. I...

Yes, I still see this problem locally. Pretty significant problem if the whole point is to avoid writing invalid queries. I see this without using hooks -- just the raw...

I dug a bit into the generated code and noticed this section: ```ts export const Thunder = (fn: FetchFunction) => ( operation: O, graphqlOptions?: ThunderGraphQLOptions, ) => (o: Z |...

We also see this with this relationship ```prisma model QuoteBid { id String @default(cuid()) @id @db.VarChar(30) createdAt DateTime @default(now()) updatedAt DateTime @updatedAt ... pendingEditId String? @map("pendingEdit") @unique @db.VarChar(30) pendingEdit QuoteBidEdit?...

I was using TypegraphQL Prisma at the time, so hard for me to give an exact log. It is easily replicated from the schema above, I would think. We followed...