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.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.
Configuration
No configuration required. This node simply clears the grouping metadata.How It Works
Place after grouped processing
Add Split Group after the section of your workflow where per-group processing was needed.
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:- Group By → Contact.Id (one update per contact)
- Update Record → update each contact individually
- Split Group → remove grouping
- Slack → one summary message about all updated contacts
Related Nodes
- Group By - sets the grouping that Split Group removes
- Aggregation - computes summaries per group before ungrouping