1 min read

Bulk Mapping

Overview

The Bulk Mapping node sits between a data source and action nodes. It maps upstream column names to the field names expected by the downstream node, and optionally selects which rows to process (all, single, or a range).

Category

Flow Controlflowcontrol/bulkMapping

Settings

SettingTypeDefaultDescription
fieldMappingsObject{}{ downstreamField: 'upstreamColumn' } mapping
rowSelection.modeStringallall, single, or range
rowSelection.startNumber0Start index (for single or range)
rowSelection.endNumberEnd index (for range, inclusive)

Inputs & Outputs

Use Cases

  1. CRM import — Map CSV columns (First Name, Email) to CRM fields (firstName, email)
  2. API data ingestion — Map API response fields to database column names
  3. Batch processing — Select a range of rows to process in chunks