NestJS - Database with Prisma
Given this PrismaService method, what will
console.log(users) output if the database has 3 users?async getUsers() {
return this.prisma.user.findMany();
}