NestJS - Database with Prisma
Given this Prisma query in a NestJS service:
What type will
const user = await prisma.user.findUnique({ where: { id: 1 } });What type will
user have?