Remix - Performance
Given this Remix loader code using Prisma:
What will be the result?
const posts = await prisma.post.findMany({ where: { published: true }, orderBy: { createdAt: 'desc' }, take: 5 });What will be the result?
