What problem does it solve? Writing correct Prisma Client queries requires knowing dozens of methods, filter operators, relation patterns, and transaction options. This Skill gives you an authoritative, versioned reference so you write accurate database queries without guessing API signatures or digging through external docs. ## Core Features & Use Cases - Complete Query Reference: Covers all model query methods (findUnique, findMany, create, update, upsert, delete, aggregate, groupBy) with return types and code examples. - Filtering and Relations: Documents scalar and logical filter operators, relation filters (some, every, none, is), nested writes, and connect/create patterns. - Transactions and Raw SQL: Explains sequential and interactive $transaction patterns, isolation levels, and safe $queryRaw/$executeRaw usage with SQL injection prevention. - Use Case: You need to paginate users with cursor-based pagination, filter by relation counts, and wrap a balance transfer in an interactive transaction. Open the matching reference file and copy the correct pattern directly. ## Quick Start Ask the AI to write a Prisma query that finds all published posts with their authors, ordered by creation date, using cursor pagination.