Member Junction
    Preparing search index...

    Outcome of a mutating list operation. Counts reports what actually happened (which may differ from the preview if records were concurrently modified — that case surfaces as STALE_DELTA rather than silent skew).

    interface ApplyResult {
        Counts?: { Added: number; Failed: number; Removed: number };
        CreatedListId?: string;
        Errors?: string[];
        Message: string;
        ResultCode: ApplyResultCode;
        Success: boolean;
        TargetListId?: string;
    }
    Index

    Properties

    Counts?: { Added: number; Failed: number; Removed: number }
    CreatedListId?: string

    Populated when MaterializeFromView (or similar) creates a new list.

    Errors?: string[]
    Message: string
    ResultCode: ApplyResultCode
    Success: boolean
    TargetListId?: string