formatLineageAsString
formatLineageAsString(
lineage,ast,options):string
Defined in: execution/lineage-formatter.ts:335
Format lineage as a multi-line string for console output.
Parameters
Section titled “Parameters”lineage
Section titled “lineage”The runtime lineage from plan execution
The plan’s AST for node descriptions
options
Section titled “options”FormatLineageOptions = {}
Formatting options
Returns
Section titled “Returns”string
Multi-line string representation
Example
Section titled “Example”const result = await run(plan, ctx)console.log(formatLineageAsString(result.lineage, plan.ast))