Skip to content

Graphorin API reference v0.9.0


Graphorin API reference / @graphorin/workflow / / listThreadCheckpoints

Function: listThreadCheckpoints()

ts
function listThreadCheckpoints(
   store, 
   workflowName, 
threadId): Promise<readonly ThreadCheckpointSummary[]>;

Defined in: packages/workflow/src/inspect.ts:93

List every persisted checkpoint of threadId under workflow workflowName, newest first as the store yields them, summarised for operator display (id, parent, step, status, node).

Parameters

ParameterType
storeCheckpointStore
workflowNamestring
threadIdstring

Returns

Promise&lt;readonly ThreadCheckpointSummary[]&gt;

Stable