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

NameTypeDescription
Items to Grouplistlist of objects to group
JSON PathStringJSON path to group by in the format of $.property

Outputs

NameTypeDescription
SuccessBooleanSuccessfully run the grouping
ResultlistGrouped result

Notes

  • The JSON path uses the format $.property.