Schema for the result of a query view operation.

interface ViewResult {
    rows: ViewResultRow[];
    total_rows?: number;
    update_seq?: string;
}

Properties

rows.

total_rows?: number

Number of total rows.

update_seq?: string

Current update sequence for the database.

Generated using TypeDoc