nexus-agents - v2.80.0
    Preparing search index...

    Interface NodeResult

    Result of a single node execution.

    interface NodeResult {
        nodeId: string;
        stateUpdates: Partial<GraphState>;
        durationMs: number;
        status: "failed" | "success" | "skipped" | "interrupted";
        error?: string;
        interrupt?: Interrupt;
        gotoTarget?: string;
    }
    Index

    Properties

    nodeId: string
    stateUpdates: Partial<GraphState>
    durationMs: number
    status: "failed" | "success" | "skipped" | "interrupted"
    error?: string
    interrupt?: Interrupt

    Set when the node returned an Interrupt envelope (#1895).

    gotoTarget?: string

    Set when the node returned a Command with goto. The executor uses this to redirect the next runnable set instead of resolving outgoing edges. Validated against the compiled graph; unknown targets are logged + ignored. (#2425)