SOQL articles
Page 2 of 3 · 34 articles
Salesforce Spring '26 - Apex Cursors and LWC Expressions
I've been testing the Salesforce Spring '26 preview, and the new Apex Cursors change what is realistic for large data...
How to Use Apex Cursors to Stream Large Datasets in LWC
If you are tired of hitting heap limits when loading records into LWC, look at Apex Cursors. They handle large data...
Using the TwoFactorMethodsInfo object for Salesforce MFA
If you need to audit MFA compliance in your org, TwoFactorMethodsInfo is the object to know. It shows you exactly which...
Create an LWC datatable tooltip with Native Features
Before you build a custom hover component for a Salesforce table, try the native tooltip attribute on...
Optimize Salesforce query performance with @ReadOnly
Tired of hitting that 50,001-row limit in Apex? Here is how the @ReadOnly annotation bumps your query capacity up to a...
Salesforce Apex interview questions - Core essentials guide
I've been on both sides of the interview desk, and most technical rounds come down to how you handle the platform's...
Apex Security Best Practices for Salesforce Developers
Security shouldn't be an afterthought, or something you bolt on the week before a release. Here is how I use User Mode...
Salesforce Flow bulkification: How to handle bulk records
If your Flows crash during data imports, you probably have a bulkification problem. Here is how to move your logic out...
Fixing Governor Limit Errors with the Flow IN Operator
Ever had a Flow crash because it tried to query every record in your org? It usually happens when the Flow IN operator...
Salesforce object relationships - Lookup and Master-Detail
The link you pick between two records decides your sharing model, your delete behavior, and whether roll-up summary...
Salesforce Flow Performance: Best Practices for Speed
Most flow problems come from small, inefficient habits that pile up over time. Here is how to pick the right triggers...
SOQL vs SOSL - Which Salesforce Query Should You Use?
Picking between SOQL vs SOSL trips up a lot of people early on. Here is how I decide which one to reach for, so your...