Overview
The Array Join command provides functionality for:- Joining array values into a delimited string
- Batching join results by limiting items per batch
- Extracting a specific property from objects before joining
Command Type
Command Type ID: 1014Parameters
| Parameter | Type | Description | Required |
|---|---|---|---|
| delimiter | string | The character or sequence used to separate the joined values | Yes |
| key | string | Specifies the property in the objects whose values will be joined | Yes |
| batchSize | number | Optional batching of joined results by limiting the number of items in each batch | No |
Usage Examples
Basic Array Join
Join with Batch Size
Join with Custom Delimiter
Common Use Cases
- ID Concatenation: Join extracted IDs into a comma-separated string for API queries
- Batch Processing: Split large arrays into batches before joining
- Data Aggregation: Combine field values from multiple objects into one string