What problem does it solve? Developers writing database queries with Prisma Client often need to recall exact method signatures, filter operators, relation syntax, and transaction patterns, which slows down implementation and leads to incorrect query construction. ## Core Features & Use Cases - Model Query Reference: Covers all CRUD methods including findUnique, findMany, create, update, upsert, delete, count, aggregate, and groupBy with return types. - Filtering and Relations: Documents scalar, logical, relation, array, and JSON filter operators plus nested writes like connect, connectOrCreate, and disconnect. - Transactions and Raw SQL: Explains sequential and interactive $transaction patterns, isolation levels, and safe $queryRaw/$executeRaw usage with SQL injection prevention. - Use Case: When building a product service endpoint that needs paginated, filtered product listings with related categories, consult this skill to construct the correct findMany call with where, orderBy, take, skip, and include options. ## Quick Start Ask the AI to write a Prisma Client query that finds all published posts by a specific author with pagination and includes their comments.