prisma-client-api-query-options

Installation
SKILL.md

Query Options

Options for controlling query behavior.

select

Choose specific fields to return:

const user = await prisma.user.findUnique({
  where: { id: 1 },
  select: {
    id: true,
    name: true,
    email: true,
    // password: false (excluded by not including)
  }
})
// Returns: { id: 1, name: 'Alice', email: 'alice@prisma.io' }
Related skills
Installs
8
GitHub Stars
8
First Seen
Mar 18, 2026