We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
when specifying combineScalarFilters config property, the generated ts definitions produce output similar to this
combineScalarFilters
TS2304: Cannot find name 'FloatFilter'. 1036 | _count?: InstanceType<typeof IntFilter>; 1037 | @Field(() => FloatFilter, {nullable:true}) > 1038 | _avg?: InstanceType<typeof FloatFilter>; | ^^^^^^^^^^^ 1039 | @Field(() => IntFilter, {nullable:true}) 1040 | _sum?: InstanceType<typeof IntFilter>; 1041 | @Field(() => IntFilter, {nullable:true})
but FloatFilter is not defined..
FloatFilter
seeing this issue on 18.0.2 and 18.1.1 (Prisma 4 compatible releases)
The text was updated successfully, but these errors were encountered:
@scarrico-divergent Could you provide your schema or part of it to reproduce the error?
Sorry, something went wrong.
Are you using combineScalarFilters with emitSingle?
emitSingle
No branches or pull requests
when specifying
combineScalarFilters
config property, the generated ts definitions produce output similar to thisbut
FloatFilter
is not defined..seeing this issue on 18.0.2 and 18.1.1 (Prisma 4 compatible releases)
The text was updated successfully, but these errors were encountered: