What problem does it solve? Writing correct Prisma Client queries requires knowing the exact API surface for CRUD operations, filter operators, relation handling, and transaction patterns, and mistakes lead to runtime errors or inefficient queries. ## 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 and logical filter operators, relation filters (some, every, none, is), and nested writes for create, connect, and disconnect operations. - Transactions and Raw SQL: Explains sequential and interactive $transaction patterns, isolation levels, and safe $queryRaw/$executeRaw usage with SQL injection prevention. - Use Case: When building a Next.js API route that needs to paginate users, filter by role, and include related posts, consult this reference to construct the correct findMany call with where, orderBy, take, skip, and include options. ## 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.