Transform, filter, and map data between automation steps with built-in functions.
NeuraFlow includes a powerful data transformation engine that lets you reshape data between steps without code. Use JSONPath expressions, built-in functions, and template syntax to extract, transform, and format data.
Use double curly braces to reference data from previous steps. Dot notation navigates nested objects, and array indexing accesses list items.
{{trigger.data.user.name}} → Access nested field
{{steps.fetch_data.output[0].id}} → First array item
{{trigger.data.amount | currency}} → Apply formatter
{{env.API_BASE_URL}} → Environment variableFor complex transformations, use the Code Step with JavaScript or Python instead of chaining multiple built-in functions.