Skip to content

Jinja Node

  • Template engine – Jinja2 syntax for string formatting
  • Entry mode – Apply template to each row with {row}, {rowIndex}, {lookups}, {numRows}
  • Payload mode – Apply template to entire dataset with {rows}, {lookups}, {numRows}
  • JSON output – Rendered output is parsed as JSON when possible
{
"custom": {
"execution": {
"template": "{{ firstName }} {{ lastName }}",
"mode": "entry"
}
}
}