Backend Queries This Skill provides Claude Code with specific guidance on how to adhere to coding standards as they relate to how it should handle backend queries. When to use this skill - When writing database queries in controllers, service classes, repositories, or model methods - When using query builder methods (where, select, join, orderBy, etc.) - When implementing eager loading to prevent N+1 query problems (with, load, etc.) - When optimizing queries by selecting only needed columns instead of using SELECT - When implementing filtering, sorting, or pagination logic in queries - When…