Member Junction
    Preparing search index...

    Result of a driver RunView call.

    interface ExternalViewResult<TRow extends ExternalRow = ExternalRow> {
        errorMessage?: string;
        executionTimeMs: number;
        rows: TRow[];
        success: boolean;
        totalRowCount?: number;
    }

    Type Parameters

    Index

    Properties

    errorMessage?: string
    executionTimeMs: number
    rows: TRow[]
    success: boolean
    totalRowCount?: number

    Total rows matching the filter ignoring paging, when the driver can determine it cheaply.