```query.runSuiteQL(`SELECT <http://e.id|e.id>, e....
# suiteanalytics
n
Copy code
query.runSuiteQL(`SELECT <http://e.id|e.id>, e.entityId, <http://t.id|t.id>, t.entity
    FROM entity AS e
    LEFT JOIN transaction t
    ON <http://e.id|e.id> = <http://t.id|t.id>
WHERE t.type = 'CustInvc' OR t.type IS NULL;`)}