Skip to main content

Overview

Memory operations let you collect and summarize data across multiple steps or loop iterations. Data is stored in named collections that persist throughout the execution.

Two operation types

Append

Add a captured value to a named collection:

Aggregate

Compute a summary value from a collection:

Aggregate operations

Complete example

Scrape a product listing across multiple pages and export to CSV:

Iterating over collections

Use collection:name syntax in a forEach loop to iterate over collected items:
See Loops & Branches for loop details.