1 min read

Data Transform

Overview

The Data Transform node applies column-level transformations to upstream data rows. It handles field renaming, reordering, type casting, computed column creation, and field removal — all in-memory without database access.

Category

Datadata/dataTransform

Settings

SettingTypeDefaultDescription
transformsArray[]List of transform operations to apply sequentially
transform.typeStringrename, cast, drop, add, reorder
transform.fieldStringTarget field name
transform.valueAnyNew name (rename), type (cast), or expression (add)

Inputs & Outputs

Use Cases

  1. Normalize CSV imports — Rename First NamefirstName, cast age to number
  2. Prepare dashboard data — Drop internal fields, add computed fullName column
  3. API response shaping — Reorder and rename fields before returning via API Response node