Remix - Performance
Given this Remix loader code using Prisma:
What will be the shape of the returned data?
const users = await prisma.user.findMany({ where: { active: true }, select: { id: true, name: true } });What will be the shape of the returned data?
