What problem does it solve? Writing correct Prisma Client queries requires knowing dozens of methods, filter operators, and transaction patterns. This Skill gives you an on-demand reference so you can write accurate database queries without leaving your workflow or guessing API syntax. ## Core Features & Use Cases - Complete Query Reference: Covers all model query methods including findUnique, findMany, create, update, upsert, delete, count, aggregate, and groupBy with return types. - Filtering and Relations: Documents scalar and logical filter operators, relation filters (some, every, none, is), nested writes, and connect/disconnect patterns. - Transactions and Raw SQL: Explains sequential and interactive transactions, isolation levels, and safe $queryRaw/$executeRaw usage with SQL injection prevention. - Use Case: When building a Next.js API route that needs paginated, filtered user records with related posts in a transaction, consult this Skill to get the exact Prisma Client syntax and best practices. ## Quick Start Ask the AI to write a Prisma query that finds all published posts by a specific author, ordered by creation date with pagination.