@squidcloud/client
    Preparing search index...

    Interface GetLangGraphStateSuccessResult

    Successful result of a getState call.

    interface GetLangGraphStateSuccessResult {
        next: string[];
        ok: true;
        state: Record<string, unknown> | null;
        threadId: string;
    }
    Index
    next: string[]

    Next nodes to execute. Empty if the graph has completed.

    ok: true

    Always true on success.

    state: Record<string, unknown> | null

    Current state values.

    threadId: string

    Thread the state belongs to.