Interface TemporalAsOfRequest

Request to read a source's state at a checkpoint or timestamp.

interface TemporalAsOfRequest {
    cursor: TemporalCursor;
    cursorToken?: string;
    filter?: TemporalFilter;
    limit?: number;
    outFields?: readonly string[];
    sourceId: string;
    where?: string;
}

Properties

The point in time to read. Provide a checkpoint id or a typed cursor.

cursorToken?: string
limit?: number

Page size hint for the returned feature window.

outFields?: readonly string[]
sourceId: string
where?: string