What problem does it solve? Writing correct Prisma Client queries requires knowing dozens of methods, filter operators, and relation patterns; this Skill provides a structured API reference so you write accurate database code without guessing syntax. ## Core Features & Use Cases - CRUD Query Reference: Covers findUnique, findMany, create, update, upsert, delete, and bulk operations with return-type tables. - Filtering and Relations: Documents scalar operators, logical AND/OR/NOT, relation filters (some, every, none), and nested writes. - Transactions and Raw SQL: Explains sequential and interactive $transaction patterns plus safe $queryRaw usage with SQL injection guidance. - Use Case: When implementing a NestJS service backed by PostgreSQL, consult this Skill to write a paginated findMany query with filtered includes and wrap dependent writes in an interactive transaction. ## Quick Start Ask the AI to write a Prisma query that finds users filtered by role with their published posts included, using this Skill as the API reference.