1. Categorizing Product Inventory
Background
An e-commerce manager has a flat list of products and needs to display them by category on a dashboard.
Problem
The raw data is a single array, making it difficult to render category-specific sections.
How to use
Input the product array, set Iteratee Type to 'Property/Path', and set Iteratee to 'category'.
Collection: [{"name":"Laptop","category":"Electronics"},{"name":"Shirt","category":"Apparel"},{"name":"Phone","category":"Electronics"}]Outcome
A JSON object grouped by category, with 'Electronics' containing the laptop and phone, and 'Apparel' containing the shirt.