Reshape Data
Data rarely arrives in exactly the shape the next step wants. Maybe you need to combine two fields, rename a key, or turn a list of raw records into a clean list of just the fields you care about. Which node you reach for depends on whether you are working with one thing or a list.
Which node to use
- Use Data Transform when you are shaping a single value or a single object, such as building one clean record out of a few fields.
- Use Map when you are reshaping every item in a list, turning a list of raw rows into a list of tidy ones.
The simplest way to remember it: one thing means Data Transform, a list means Map.