...
Code Block | ||
---|---|---|
| ||
{
forEach(
//For each $company object, return the data from the lookup connector, getCo, as JSON
$company, toJson(getCo).getCo,
//Create a key-value pair of the CompanyName paired with the $company object, and convert the CompanyName within the $company object to uppercase
$company.CompanyName : {$company,"CompanyName":toUpper($company.CompanyName)}
)
} |
...