> ## Documentation Index
> Fetch the complete documentation index at: https://docs.bondata.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Split Group

> Remove grouping to return records to single-batch processing

Removes grouping metadata set by a [Group By](/guide/nodes/transform/group-by-node) node. Use it when you need per-record processing in one part of your workflow but batch processing in another.

## Configuration

No configuration required. This node simply clears the grouping metadata.

## How It Works

<Steps>
  <Step title="Place after grouped processing">
    Add Split Group after the section of your workflow where per-group processing was needed.
  </Step>

  <Step title="Continue with batch processing">
    Downstream nodes will treat all records as a single collection again.
  </Step>
</Steps>

## Output

The same records, with grouping metadata removed. Downstream action nodes will process all records as a single batch.

## Example

Per-record updates followed by a single summary notification:

1. **Group By** → Contact.Id (one update per contact)
2. **Update Record** → update each contact individually
3. **Split Group** → remove grouping
4. **Slack** → one summary message about all updated contacts

## Related Nodes

* **[Group By](/guide/nodes/transform/group-by-node)** - sets the grouping that Split Group removes
* **[Aggregation](/guide/nodes/transform/aggregation-node)** - computes summaries per group before ungrouping
