Member Junction
    Preparing search index...
    interface LoadDetailWindowParams {
        BeforeSequence?: number;
        ConversationID: string;
        PageSize?: number;
        RawOverread?: number;
    }
    Index

    Properties

    BeforeSequence?: number

    Exclusive: return rows with Sequence below this. Omit for the latest window.

    Sequence is the cursor, NOT the primary key — MJ: Conversation Details.ID is a uniqueidentifier, and RunViewParams.AfterKey is a PK seek that rejects any non-PK OrderBy, so it cannot express chat order.

    ConversationID: string
    PageSize?: number

    Timeline items the caller is trying to fill. Default DEFAULT_WINDOW_PAGE_SIZE.

    RawOverread?: number

    Raw rows to pull per attempt. Default PageSize * 3.