NestJS - Database with Prisma
Given this Prisma update call in a NestJS service:
What will this operation do?
this.prisma.user.update({ where: { id: 5 }, data: { email: 'new@example.com' } })What will this operation do?
