Data flows through your workflow as items — arrays of JSON objects. Understanding how to reference, transform, and route this data is essential.
Expression Editor
The expression editor lets you dynamically reference data from any previous node. Access it by clicking the "fx" icon on any field.
Common Patterns
- - Direct reference: `{{ $json.email }}` — access a field from the previous node
- - Cross-node reference: `{{ $node["Node Name"].json.field }}`
- - JavaScript: `{{ $json.name.split(" ")[0] }}` — use JS functions inline