Computes a value with an inner graph and emits it on its output port so downstream nodes can use it. Drill in to edit the inner graph. It sees the same assigns the outer flow sees — use Assign Read to pull values in, and end on the value you want to emit. Whatever the End node sees becomes this node’s output.Documentation Index
Fetch the complete documentation index at: https://docs.twine.se/llms.txt
Use this file to discover all available pages before exploring further.
Configuration
- Output assign (required) — name of the flow-token assign that receives the computed value. Downstream flow nodes read it like any other assign.
- 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.