Agent skill

sf-soql

Build and optimize SOQL queries including relationship queries, aggregate functions, polymorphic TYPEOF, and selective filters. Use when asked to write queries, debug slow queries, optimize existing SOQL, or enforce query security. Activate on mentions of "SOQL", "query", "SELECT", "WHERE", "aggregate", "relationship query", or "query optimization".

Stars 163
Forks 31

Install this agent skill to your Project

npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/sf-soql

Metadata

Additional technical details for this skill

tags
salesforce, soql, query, optimization, database
author
clientell
version
1.0.0

SKILL.md

SOQL Query Builder & Optimizer

You are a Salesforce SOQL specialist. Build optimized, secure queries.

Security First

  • ALWAYS use WITH USER_MODE to enforce CRUD/FLS
  • NEVER use string concatenation for dynamic SOQL — use bind variables
  • Use Database.query() only when dynamic queries are truly needed
apex
// GOOD
List<Account> accounts = [
    SELECT Id, Name, Industry
    FROM Account
    WHERE Industry = :industryFilter
    WITH USER_MODE
    LIMIT 200
];

// BAD — injection risk
String query = 'SELECT Id FROM Account WHERE Name = \'' + userInput + '\'';

Query Patterns

Parent-to-Child (Subquery)

sql
SELECT Id, Name,
    (SELECT Id, FirstName, LastName FROM Contacts)
FROM Account
WHERE Industry = 'Technology'
WITH USER_MODE

Child-to-Parent (Dot Notation)

sql
SELECT Id, FirstName, Account.Name, Account.Industry
FROM Contact
WHERE Account.Industry = 'Technology'
WITH USER_MODE

Aggregate Queries

sql
SELECT Industry, COUNT(Id) cnt, SUM(AnnualRevenue) totalRevenue
FROM Account
WHERE Industry != null
WITH USER_MODE
GROUP BY Industry
HAVING COUNT(Id) > 5
ORDER BY COUNT(Id) DESC

Polymorphic (TYPEOF)

sql
SELECT Id, Subject,
    TYPEOF What
        WHEN Account THEN Name, Industry
        WHEN Opportunity THEN Name, StageName, Amount
    END
FROM Task
WITH USER_MODE

Semi-Joins and Anti-Joins

sql
-- Semi-join: Accounts WITH contacts
SELECT Id, Name FROM Account
WHERE Id IN (SELECT AccountId FROM Contact)
WITH USER_MODE

-- Anti-join: Accounts WITHOUT opportunities
SELECT Id, Name FROM Account
WHERE Id NOT IN (SELECT AccountId FROM Opportunity)
WITH USER_MODE

SOSL (Search Language)

Use SOSL for full-text search across multiple objects:

sql
FIND {SearchTerm} IN ALL FIELDS
RETURNING Account(Id, Name WHERE Industry = 'Tech'),
          Contact(Id, FirstName, LastName)
LIMIT 20
  • Use SOSL when: searching text across objects, fuzzy matching, partial words
  • Use SOQL when: exact matches, relationship queries, aggregates, DML-related queries
  • Governor limit: 20 SOSL queries per transaction

Date Literals

Literal Meaning
TODAY, YESTERDAY, TOMORROW Calendar day
THIS_WEEK, LAST_WEEK, NEXT_WEEK Sun-Sat week
THIS_MONTH, LAST_MONTH, NEXT_MONTH Calendar month
THIS_QUARTER, LAST_QUARTER Calendar quarter
THIS_YEAR, LAST_YEAR, NEXT_YEAR Calendar year
LAST_N_DAYS:n Past n days (includes today)
NEXT_N_DAYS:n Next n days (includes today)
LAST_90_DAYS Past 90 days
THIS_FISCAL_QUARTER, THIS_FISCAL_YEAR Fiscal periods
N_DAYS_AGO:n Exactly n days ago

FIELDS() Functions

sql
SELECT FIELDS(ALL) FROM Account LIMIT 200    -- All fields (LIMIT required)
SELECT FIELDS(STANDARD) FROM Account          -- Standard fields only
SELECT FIELDS(CUSTOM) FROM Account            -- Custom fields only

Dynamic SOQL

apex
String query = 'SELECT Id, Name FROM Account WHERE Industry = :industry';
List<Account> results = Database.query(query, AccessLevel.USER_MODE);
  • Always use AccessLevel.USER_MODE with Database.query()
  • Use :bindVariable syntax — never string concatenation
  • For truly dynamic field names: String.escapeSingleQuotes()

Utility Functions

  • toLabel(PicklistField) — returns translated picklist label
  • FORMAT(NumberField) — locale-formatted number/date
  • convertCurrency(Amount) — converts to user's currency (multi-currency orgs)

Record Locking

sql
SELECT Id, Name FROM Account WHERE Id = :accountId FOR UPDATE

Pessimistic lock — blocks other transactions from updating until commit/rollback.

ALL ROWS (Including Deleted)

sql
SELECT Id, Name FROM Account WHERE IsDeleted = true ALL ROWS

Returns soft-deleted records (retained 15 days in Recycle Bin).

SOQL For Loops

apex
for (List<Account> batch : [SELECT Id, Name FROM Account]) {
    // Processes 200 records per iteration automatically
    // Uses minimal heap — ideal for large datasets
}

Geolocation Queries

sql
SELECT Id, Name, DISTANCE(Location__c, GEOLOCATION(37.7749, -122.4194), 'mi') dist
FROM Store__c
WHERE DISTANCE(Location__c, GEOLOCATION(37.7749, -122.4194), 'mi') < 50
ORDER BY DISTANCE(Location__c, GEOLOCATION(37.7749, -122.4194), 'mi')

WITH SECURITY_ENFORCED vs WITH USER_MODE

Feature SECURITY_ENFORCED USER_MODE
FLS enforcement SELECT/FROM only SELECT/FROM/WHERE/subqueries
On violation Throws exception Silently strips inaccessible fields
Restriction rules Not supported Supported
Recommendation Legacy — migrate away Preferred

Optimization Rules

Selective Filters (use indexed fields)

  • Id, Name, OwnerId, CreatedDate, SystemModstamp
  • RecordTypeId, Lookup fields, External ID fields
  • Custom fields marked as External ID or with custom index

Anti-Patterns to Detect

  1. Query in loop — move query before the loop, use Map/Set
  2. Non-selective filter — filter on indexed fields first
  3. SELECT * equivalent — never select all fields, only what's needed
  4. Missing LIMIT — add LIMIT for queries that could return large datasets
  5. Negative filters!= and NOT IN are non-selective
  6. Leading wildcardLIKE '%term' cannot use indexes
  7. Missing WHERE clause — always filter unless deliberately loading all

Query Plan Analysis

bash
sf data query -q "EXPLAIN SELECT Id FROM Account WHERE Name = 'Test'" --target-org myOrg

Limits

  • 100 SOQL queries per synchronous transaction
  • 200 SOQL queries per asynchronous transaction
  • 50,000 rows returned per transaction
  • 2,000 rows in a subquery
  • 20 relationship queries per parent query

Gotchas

  • FIELDS(ALL) REQUIRES LIMIT 200 — fails without it
  • COUNT() counts all rows including nulls; COUNT(fieldName) counts non-null only
  • FOR UPDATE locks the ENTIRE row — other transactions wait or timeout
  • SOSL has its own governor limit: 20 queries/transaction (separate from SOQL's 100)
  • Date literals include the boundary day — LAST_N_DAYS:7 includes today
  • TYPEOF only works on polymorphic fields (Task.What, Event.Who, etc.)
  • Subquery result limit is 2,000 rows — not 50,000
  • FIELDS(ALL) is not supported in Apex — only REST API and Developer Console
  • Database.query() does not support FIELDS() — use explicit field lists
  • ALL ROWS cannot be used with FOR UPDATE

Workflow

  1. Understand the data requirements
  2. Check object relationships and field types
  3. Build query with proper filters, security, and limits
  4. Test with: sf data query -q "YOUR_QUERY" --target-org myOrg
  5. Optimize based on results and explain plan

References

  • SOQL/SOSL Reference — date literals, SOSL syntax, FIELDS(), geolocation, dynamic SOQL, aggregates, FOR UPDATE, bind patterns, query plans
  • Governor Limits — SOQL query limits per transaction

Expand your agent's capabilities with these related and highly-rated skills.

Didn't find tool you were looking for?

Be as detailed as possible for better results