tprouvot / Salesforce-Inspector-reloaded

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.
https://chrome.google.com/webstore/detail/salesforce-inspector-relo/hpijlohoihegkfehhibggnkbjhoemldh
MIT License
185 stars 58 forks source link

[data-export] Query Five Levels of Parent-to-Child Relationships in SOQL Queries #280

Closed tprouvot closed 7 months ago

tprouvot commented 8 months ago

Is your feature request related to a problem? Please describe. Based on Summer 23' release, it is now possible to query 5 levels of parents-childs in SOQL queries. When running a five levels query on inspector, the query is considered as malformed.

Describe the solution you'd like It would be great if the tool could support the five levels

Additional context

image
tprouvot commented 8 months ago

Example to test:

SELECT Name,
    (SELECT LastName,
        (SELECT AssetLevel,
            (SELECT Description,
                (SELECT LineItemNumber FROM WorkOrderLineItems)    
            FROM WorkOrders)    
        FROM Assets)    
    FROM Contacts)    
FROM Account
tprouvot commented 7 months ago

Already covered 👍