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 & Relations: Documents scalar operators, logical operators (AND/OR/NOT), relation filters (some/every/none), and nested writes. - Transactions & Raw SQL: Explains sequential and interactive $transaction patterns plus 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 an interactive transaction — this Skill provides the exact patterns for each step. ## Quick Start Ask the AI to write a Prisma query that finds all verified users with at least one published post, ordered by creation date with cursor pagination.