What problem does it solve? Writing correct Prisma Client queries requires knowing dozens of methods, filter operators, and transaction patterns, and mistakes lead to runtime errors or inefficient database access. This Skill gives you an authoritative, versioned reference so you can write accurate CRUD operations, filters, relation queries, and transactions on the first attempt. ## Core Features & Use Cases - Complete Query Reference: Covers all model query methods (findUnique, findMany, create, update, upsert, delete, aggregate, groupBy) with return types and examples. - Filtering & Relations: Documents scalar, logical, relation, array, and JSON filter operators plus nested writes like connect, connectOrCreate, and disconnect. - Transactions & Raw SQL: Explains sequential and interactive $transaction patterns, isolation levels, and safe $queryRaw/$executeRaw usage with SQL injection prevention. - Use Case: While building a NestJS endpoint that paginates tasks and filters by completion status, consult this Skill to compose the correct findMany call with where, orderBy, take, skip, and cursor options. ## Quick Start Ask the AI to write a Prisma query that finds all incomplete tasks containing a keyword, ordered by creation date with pagination.