Dick Fickling
Dick Fickling
Thanks, this helped a bit (or at least, moved the time from `prisma generate` to `tsc`). Not necessarily a typegraphql-prisma question, but are you aware of a good pattern to...
Here's a specific example: ``` model Company { id String @id @default(cuid()) @db.Text() name String @db.Citext() /// @TypeGraphQL.omit(input: ["create"]) employees Employee[] } model Employee { id String @id @default(cuid()) @db.Text()...
for anybody watching this issue, i'm pretty sure @MichalLytek fixed it in 0.27.1. Time spent generating has dropped from 60s to 5s on my project
I find myself wishing for this feature pretty regularly. @MichalLytek if I wanted to implement it myself, can you give me a _very rough_ overview of how you'd suggest i...
+1 - @tkazec I'd be happy to add this feature and submit a PR if it's something you'd like in the extension
@floelhoeffel has any progress been made since that survey went out in August? We'd love to use FTS but the lack of indexes makes this feature somewhat useless.