Roman Vasilev
Roman Vasilev
I did not get. You are referencing to postgres, but documentation says that `unset` is supported by MongoDB only
Are you using swc as a typescript transpiler?
Field description is nullable from graphql perspective. Not from the typescript. If you will make ts field optional by 'question mark' modifier this field will be treated as possible undefined....
> why we have AlertType You have AlertType field in your schema, if you will check prisma types you will see the same field in AlertCreateMany type
Are you using windows os? Remove file is wrapped to try / catch, I'll add logging in catch
Same type generated by prisma (without id). You can: 1. Remove `@default(autoincrement())` from `customerTest` 2. Use `customerTestUncheckedCreateInput` instead
Prisma for `folllowers` property has `User$followersArgs` but graphql: ```ts @Field(() => [User], { nullable: true }) followers?: Array; ``` I need to check, but I suspect it will not be...
@scarrico-divergent Could you provide your schema or part of it to reproduce the error?
Are you using `combineScalarFilters` with `emitSingle`?
You need both typescript and graphql types as non-nullable? In case of typescript this will make prisma types and generated types incompatible: Property `articles` is not generated in prisma User...