Mapping of node names to their PregelNode implementations
Mapping of channel names to their BaseChannel implementations
Type of context that can be passed to the graph
Optional
cacheOptional cache for the graph, useful for caching tasks.
Optional
checkpointWhether to checkpoint intermediate steps, defaults to true
.
If false
, only the final checkpoint is saved.
Optional
contextStatic context for the graph run, like userId
, dbConnection
etc.
Optional
debugEnables detailed debug logging during graph execution. When enabled, prints information about:
Optional
durabilityWhether to checkpoint during the run (or only at the end/interruption).
"async"
: Save checkpoint asynchronously while the next step executes (default)."sync"
: Save checkpoint synchronously before the next step starts."exit"
: Save checkpoint only when the graph exits.Optional
encodingThe encoding to use for the stream.
undefined
: Use the default format."text/event-stream"
: Use the Server-Sent Events format.Optional
inputSpecifies which channel keys to retrieve from the checkpoint when resuming execution. This is an advanced option that you generally don't need to set manually. The graph will automatically determine the appropriate input keys based on its configuration.
Optional
interruptList of nodes where execution should be interrupted AFTER the node runs. Similar to interruptBefore, but interrupts after node completion. Useful when the node's output needs to be reviewed before proceeding.
Optional
interruptList of nodes where execution should be interrupted BEFORE the node runs. Can be used for debugging and advanced state manipulation use cases. For human-in-the-loop workflows, developers should prefer the
Optional
outputSpecifies which channel keys to include in the output stream and final result. Use this to filter which parts of the graph state you want to observe.
Optional
storeA shared value store that allows you to store and retrieve state across threads. Useful for implementing long-term memory patterns.
Optional
streamControls what information is streamed during graph execution. Multiple modes can be enabled simultaneously.
Supported modes:
Optional
subgraphsWhether to include subgraph execution details in the stream. When true, state updates from nested graphs will also be streamed.
Configuration options for executing a Pregel graph. These options control how the graph executes, what data is streamed, and how interrupts are handled.