Hi there,
new to n8n.
question: using n8n node Postgres on insert, with multiple lines records table as output.
Planning to use email node to send whole table content out. Facing issue, while using HTML expression, such as {{ $(‘Insert/Update’).all().json.Time }},all() shows [undefined].
wondering anyone could help.
Thanks
snxnj
$(‘Insert/Update’).all()
should be an array. So you can’t use .json
on it.
Here a short workflow from generating fake data to creating html table with all data from table.
Plus a Edit node that uses the .all()
with a simle .map()
function.
2 Likes
Thanks Franz, It helps!
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.