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

NameTypeDescription
Items to GroupListList of objects to group
JSON PathStringJSON path to group by

Outputs

NameTypeDescription
SuccessBooleanSuccessfully run the grouping
ResultObjectGrouped result

Notes

  • The JSON path identifies the field inside each item to group by.