Group List By
Groups a list of objects by the value at a given path. Use it to bucket items that share the same property value.
What it does
- Reads the value at the given JSON path in each item.
- Groups together items that share the same value.
- Returns the grouped result.
Inputs
| Name | Type | Description |
|---|---|---|
| Items to Group | List | List of objects to group |
| JSON Path | String | JSON path to group by |
Outputs
| Name | Type | Description |
|---|---|---|
| Success | Boolean | Successfully run the grouping |
| Result | Object | Grouped result |
Notes
- The JSON path identifies the field inside each item to group by.