Chrome extension to add a metadata layout on top of the standard Salesforce UI to improve the productivity and joy of Salesforce configuration, development, and integration.
I am encountering challenges when working with lengthy SOQL queries that involve multiple select fields and subqueries. These queries are often copied from batch jobs or generated for analyzing various issues.
It would be highly beneficial if the Salesforce-Inspector-reloaded could support the formatting of SOQL queries, allowing for proper indentation and the ability to include comments. For example:
SELECT column1, column2
FROM table1
WHERE condition1
AND condition2
OR condition3
// This is a comment using double slashes
Enabling comments using any of the common styles such as //, /**/, --, or ;; would enhance the experience, especially when dealing with long nested queries for data analysis.
I am encountering challenges when working with lengthy SOQL queries that involve multiple select fields and subqueries. These queries are often copied from batch jobs or generated for analyzing various issues.
It would be highly beneficial if the Salesforce-Inspector-reloaded could support the formatting of SOQL queries, allowing for proper indentation and the ability to include comments. For example:
Enabling comments using any of the common styles such as
//
,/**/
,--
, or;;
would enhance the experience, especially when dealing with long nested queries for data analysis.