| name | sf-soql |
| description | 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".
|
| license | Apache-2.0 |
| compatibility | Requires Salesforce CLI (sf) v2+. Authenticated org needed for query execution. |
| metadata | {"author":"clientell","version":"1.0.0","tags":"salesforce, soql, query, optimization, database"} |
| allowed-tools | Read,Write,Edit,Bash(sf *),Glob,Grep |
| context | fork |
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
// 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)
SELECT Id, Name,
(SELECT Id, FirstName, LastName FROM Contacts)
FROM Account
WHERE Industry = 'Technology'
WITH USER_MODE
Child-to-Parent (Dot Notation)
SELECT Id, FirstName, Account.Name, Account.Industry
FROM Contact
WHERE Account.Industry = 'Technology'
WITH USER_MODE
Aggregate Queries
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)
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
SELECT Id, Name FROM Account
WHERE Id IN (SELECT AccountId FROM Contact)
WITH USER_MODE
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:
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
SELECT FIELDS(ALL) FROM Account LIMIT 200
SELECT FIELDS(STANDARD) FROM Account
SELECT FIELDS(CUSTOM) FROM Account
Dynamic SOQL
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
SELECT Id, Name FROM Account WHERE Id = :accountId FOR UPDATE
Pessimistic lock โ blocks other transactions from updating until commit/rollback.
ALL ROWS (Including Deleted)
SELECT Id, Name FROM Account WHERE IsDeleted = true ALL ROWS
Returns soft-deleted records (retained 15 days in Recycle Bin).
SOQL For Loops
for (List<Account> batch : [SELECT Id, Name FROM Account]) {
// Processes 200 records per iteration automatically
// Uses minimal heap โ ideal for large datasets
}
Geolocation Queries
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
- Query in loop โ move query before the loop, use Map/Set
- Non-selective filter โ filter on indexed fields first
- SELECT * equivalent โ never select all fields, only what's needed
- Missing LIMIT โ add LIMIT for queries that could return large datasets
- Negative filters โ
!= and NOT IN are non-selective
- Leading wildcard โ
LIKE '%term' cannot use indexes
- Missing WHERE clause โ always filter unless deliberately loading all
Query Plan Analysis
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
- Understand the data requirements
- Check object relationships and field types
- Build query with proper filters, security, and limits
- Test with:
sf data query -q "YOUR_QUERY" --target-org myOrg
- 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