Skip to content

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.

License

Notifications You must be signed in to change notification settings

akohan91/libak-salesforce-dynamic-soql

Repository files navigation

Salesforce Dynamic SOQL

Salesforce Dynamic SOQL Deploy to Salesforce akohan91 | LinkedIn

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.

πŸš€ Features

  • 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.

πŸ“– Documentation

Apex Reference API Guide

Learn how to use Salesforce Dynamic SOQL in your Apex code: Read the Apex Guide

JavaScript Reference API Guide

Integrate Salesforce Dynamic SOQL into your JavaScript applications: Read the JavaScript Guide

πŸ”§ Installation

    The information is not prepared yet

πŸ“œ Examples

Apex Example

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
*/

JavaScript Example

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))
        )
    );

πŸ’‘ Contributing

    The information is not prepared yet

πŸ“œ License

This project is licensed under the MIT License.

πŸ“« Contact

If you have any questions, feedback, or suggestions, feel free to reach out:

Thank you for using Salesforce Dynamic SOQL! We hope this library makes your development process more efficient and enjoyable. πŸš€

About

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.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published