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 on-demand reference so you can write accurate database queries without leaving your workflow to search documentation. ## 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: You need to paginate users, filter by role, and include their published posts. Reference this Skill to compose the correct findMany call with where, orderBy, take, cursor, and a filtered include. ## Quick Start Ask the AI to write a Prisma query that finds all admin users with their published posts, ordered by creation date and limited to ten results.