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 on-demand reference so you can write accurate database queries without leaving your workflow to search documentation. ## Core Features & Use Cases - Complete Query Reference: Covers all model query methods including findUnique, findMany, create, update, upsert, delete, count, aggregate, and groupBy with return type tables. - Filtering and Relations: Documents scalar operators, logical operators (AND, OR, NOT), relation filters (some, every, none, is), and nested write patterns 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 guidance. - Use Case: When building a multi-tenant REST API like Vecta's backend, use this Skill to correctly write a filtered findMany query with pagination, relation includes, and an interactive transaction for balance updates. ## 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.