Configuration
- Output assign (required for execution) — name of the flow-token assign that receives the computed value. Downstream flow nodes read it like any other assign. The save changeset doesn’t enforce it so a flow mid-authoring can still be persisted; at run time, an unset value is a no-op (no assign is written).
- Subject assign (optional) — assigns key whose value becomes the
subject for Attribute nodes inside the inner graph. Lets you read dated
properties directly without an Assign Read wrapper. The referenced value
must be a defdata struct (e.g.
%Employee{}) or any struct carrying a%DatedProperties{}bag.
When to reach for it
- To compute something from several assigns without cluttering the outer flow with control-flow nodes.
- To build a boolean predicate that feeds into Flow Switch.