What This Node Does
The Union node stacks datasets vertically by appending rows from multiple sources. Use it to combine data with the same or similar column structure—like merging sales data from different regions or combining historical and current data. [SCREENSHOT: Union node with two input connections showing “Combined 10,000 rows (Region A) + 8,000 rows (Region B) = 18,000 rows”]When to Use This Node
Use the Union node when you need to:- Combine regional data - Merge US sales + UK sales + EU sales into one dataset
- Merge time periods - Combine Q1 data + Q2 data + Q3 data + Q4 data
- Consolidate sources - Stack data from multiple CSV files with same structure
- Append new to historical - Add today’s transactions to historical transaction table
Step-by-Step Usage Guide
1
Add Union node to canvas
2
Connect first input
Connect your first dataset to the Union node’s top input handle[SCREENSHOT: Region A data connected to top input]
3
Connect second input
Connect your second dataset to the Union node’s bottom input handle[SCREENSHOT: Region B data connected to bottom input]
4
Choose union type
Select UNION ALL (keep all rows including duplicates) or UNION (remove duplicates)[SCREENSHOT: Union type dropdown]
5
Configure column alignment
Choose “Align by Name” (default) or “Align by Position”[SCREENSHOT: Alignment options]
6
Preview combined results

