Data nodes hold CSV data. Drop a .csv file onto the node to load it; the table is shown in the node. Connect this node to a Config node to use the data in Nunjucks templates.
+In a Config template connected to this data node, the variable {'{{ '}nodeId{' }}'} is an array of row objects (one per CSV row). Each row has keys from the CSV header. Example: {'{% for row in data_001 %}{{ row.name }}, {{ row.value }}{% endfor %}'}