Interface HonuaOdataDeltaPage<T>

Cursor-driven change-feed page returned by delta().

interface HonuaOdataDeltaPage<T> {
    deltaLink?: string;
    nextLink?: string;
    rows: readonly T[];
}

Type Parameters

  • T

Properties

deltaLink?: string

Final-page cursor that callers persist for the next delta({ since }).

nextLink?: string

Cursor for the next batch; undefined when the feed is fully drained.

rows: readonly T[]