agents/rules/data-prefer-select-over-include.md
Impact: HIGH (Reduces data transfer and improves query performance)
Using select instead of include in Prisma queries fetches only the fields you need, improving performance and preventing accidental exposure of sensitive data.
Incorrect (using include fetches all fields):
const booking = await prisma.booking.findFirst({
include: {
user: true, // This gets ALL user fields including sensitive ones
}
});
Correct (using select for specific fields):
const booking = await prisma.booking.findFirst({
select: {
id: true,
title: true,
user: {
select: {
id: true,
name: true,
email: true,
}
}
}
});
Benefits:
credential.key)Exception: Use include only when you genuinely need all fields from a relation, which is rare.
Reference: Cal.com Engineering Standards