Skip to main content
Removes grouping metadata set by a Group By 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

1

Place after grouped processing

Add Split Group after the section of your workflow where per-group processing was needed.
2

Continue with batch processing

Downstream nodes will treat all records as a single collection again.

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
  • Group By — sets the grouping that Split Group removes
  • Aggregation — computes summaries per group before ungrouping