Step 6 · Parallel Branch
Memory Store
Saves the high-discount count into workflow memory, so it can be read back later — after the Loop has finished processing every item.
This node has no configuration fields of its own — it uses the shared Source Data Path and Target Data Path common forms, the same ones every node in Flow Studio can attach.
Configuration — Source Data Path
| Field | Value |
|---|---|
sourceDataRootPath | nodeOutput.countHighDiscount |
sourceDataLeafPath | count |
(countHighDiscount is the node key/display name of the previous page's Collection Operation node — adjust to match whatever you name that node on your own canvas.)
Configuration — Target Data Path
| Field | Value |
|---|---|
targetDataRootPath | memory.slackSentCount |
What happens here
Memory Store doesn't transform anything — it's a plain copy from one location to another. The
memory. prefix on the target root path is what makes the value persist at the workflow level, readable by any later node (not just ones directly downstream) — exactly what's needed for the run summary email.
Not yet built on the canvas
Like the Count High-Discount Items node, this hasn't been added and tested on the live canvas yet. Verify these exact path values once it's wired up.