Read rows from Google Sheet returns:
[
{
“row_number”: 2,
“First”: “Bruce”,
“Last”: “Wayne”,
“Hero”: “Batman”
},
{
“row_number”: 3,
“First”: “Peter”,
“Last”: “Parker”,
“Hero”: “Spiderman”
},
{
“row_number”: 4,
“First”: “Diana”,
“Last”: “Prince”,
“Hero”: “Wonder Woman”
}
]
How can I create a single text block (like to include in a single email) like this?
Bruce Wayne
Batman
Peter Parker
Spiderman
Diana Prince
Wonder Woman
I’ve tried the community node Document Generator, but the help docs show using {{#each items}}
which gives me a syntax error.
The only difference I can find is that Sheet’s wraps the items in square brackets while the source sample in the docs don’t. It just shows {}.
But I can’t figure out a way to remove the from the Sheets output.
I tried the Aggregate node, but it also wraps in square brackets.