What problem does it solve? Writing correct Prisma Client queries requires knowing dozens of methods, filter operators, relation patterns, and transaction APIs. This Skill gives you an authoritative reference so you can write accurate database queries without guessing syntax or digging through external docs. ## Core Features & Use Cases - Complete CRUD Reference: Covers findUnique, findMany, create, update, upsert, delete, aggregations, and groupBy with typed examples. - Filtering and Relations: Documents scalar operators, logical operators (AND/OR/NOT), relation filters (some/every/none), and nested writes. - 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, filter by role, include their published posts, and wrap a balance transfer in a transaction. This Skill provides the exact query shapes and transaction code to implement it correctly. ## Quick Start Ask the AI to write a Prisma query that finds all admin users with their published posts, ordered by creation date with cursor pagination.