NestJS - Database with Prisma
You wrote this Prisma query in NestJS:
But you get a TypeScript error:
What is the most likely cause?
const posts = await prisma.post.findMany({ where: { title: 'Hello' } });But you get a TypeScript error:
Property 'title' does not exist on type 'PostWhereInput'.What is the most likely cause?
