Group Items in the List
Groups a list of objects by a shared property value. Use it to bucket items that have the same value at a given path.
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 in the format of $.property |
Outputs
| Name | Type | Description |
|---|---|---|
| Success | Boolean | Successfully run the grouping |
| Result | list | Grouped result |
Notes
- The JSON path uses the format
$.property.