NestJS - Database with Prisma
Given the following Prisma call in a NestJS service:
What will be the value of
const user = await this.prisma.user.findUnique({ where: { id: 10 } });What will be the value of
user if no user with id 10 exists?