

Welcome to the Salesforce Dynamic SOQL project! This open-source library empowers Salesforce developers to write dynamic and efficient SOQL (Salesforce Object Query Language) queries in both Apex and JavaScript, enhancing productivity and code maintainability.
- Dynamic Query Generation: Build SOQL queries programmatically with ease.
- Cross-Platform Support: Apex and JavaScript implementations available.
- Safe and Secure: Helps prevent SOQL injection by using binding variables.
- Customizable: Extend and modify the library to suit your specific needs.
- Comprehensive API: Easy-to-use methods for query creation, modification, and execution.
Learn how to use Salesforce Dynamic SOQL in your Apex code: Read the Apex Guide
Integrate Salesforce Dynamic SOQL into your JavaScript applications: Read the JavaScript Guide
The information is not prepared yet
DynamicSOQL soql = new DynamicSOQL('Account')
.withField('Id')
.withField('Name')
.withConditions(
new DynamicSOQLConditionBlock('AND')
.addCondition(new DynamicSOQLCondition('Name', '=', 'Some Account Name'))
)
.withOrderBy(new DynamicSOQLOrderBy(new List<String>{'Name', 'Id'}));
System.debug(soql.stringify());
/* The output (line breaks was added manually):
SELECT Id,Name
FROM Account
WHERE (Name = 'Some Account Name')
ORDER BY Name,Id ASC NULLS LAST
*/
const soql = new DynamicSOQL('Account')
.withField('Id')
.withField('Name')
.withConditions(
new DynamicSOQLConditionBlock('AND')
.addCondition(new DynamicSOQLCondition('Name', '=', 'Some Account Name'))
)
.withOrderBy(new DynamicSOQLOrderBy(['Name', 'Id']))
.withSubQuery(
'Contacts',
new DynamicSOQL('Contact')
.withField('FirstName')
.withField('Email')
.withConditions(
new DynamicSOQLConditionBlock('AND')
.addCondition(new DynamicSOQLCondition('Email', '!=', null))
)
);
The information is not prepared yet
This project is licensed under the MIT License.
If you have any questions, feedback, or suggestions, feel free to reach out:
- GitHub Issues: Report an issue
- Email: akohan91@gmail.com
Thank you for using Salesforce Dynamic SOQL! We hope this library makes your development process more efficient and enjoyable. π