With Salesforce Spring 21 release, Salesforce has introduced SOQL Fields functions. The FIELDS() function lets us select groups of fields without knowing their names in advance. This function simplifies SELECT statements, avoids the need for multiple API calls, and provides a low-code method to explore the data in the org. This function is available in API version…
Tag: SOQL
Visual Studio SOQL Builder
Visual Studio SOQL Query Builder is a VS code extension from Salesforce which we can use to create and run SOQL inside VS code. Using Visual Studio SOQL Builder we can see actual results without doing any guesswork. And we can do export records in JSON or CSV format. So if we need to take…
Accessibility Check In SOQL Queries Using WITH SECURITY_ENFORCED
Security is very important doe any developer. In Salesforce we follow all guidelines related to security. Most of the security feature is handle by Salesforce. One of the common security feature is Object and Field level check. For this Salesforce introduce new feature WITH SECURITY_ENFORCED. Today we will check how we can use it. This…