Creating an expression node
- Drag an Expression node onto the canvas
- Connect it to your data flow
- Click Edit Expression to open the editor
- Define output fields and their expressions
Expression structure
Each expression node produces an output object. You define fields and the expressions that calculate them:Accessing data
Reference input data using dot notation:Referencing previous nodes
Use$nodes to access output from any upstream node by its name:
Operators
Arithmetic
Comparison
Logical
Ternary (conditional)
Null handling
Range checks
Built-in functions
Math
String
Array
The
# symbol represents each element when iterating over arrays.