raghav
04/18/2023, 8:03 AMShawn Talbert
04/18/2023, 1:24 PM.map()
them to transform the shape as desired)raghav
04/18/2023, 1:53 PMscottvonduhn
04/18/2023, 7:26 PMSELECT CompanyName, OverdueBalance, DaysOverdue FROM Customer
In the map phase, you can do this:
const { values } = JSON.parse(mapContext.value);
const [CompanyName, OverdueBalance, DaysOverdue] = values;
And then you’ll have the values you want, with variable names using PascalCase, or whatever format you need. Just make sure to keep the constants in the same order they are in the select statement.