@squidcloud/client
    Preparing search index...

    Interface InvokeLangGraphSuccessResult

    Successful result of a LangGraph invocation.

    interface InvokeLangGraphSuccessResult {
        next: string[];
        ok: true;
        state: Record<string, unknown> | null;
        status: "completed" | "interrupted";
        threadId: string;
    }
    Index
    next: string[]

    Next nodes to execute. Empty when status is completed.

    ok: true

    Always true on success.

    state: Record<string, unknown> | null

    Final (or paused) state values.

    status: "completed" | "interrupted"

    completed when the graph finished, interrupted when awaiting a resume.

    threadId: string

    Thread the run executed against.