Schema for the result of a query search operation.

interface SearchResultProperties {
    bookmark?: string;
    by?: string;
    counts?: JsonObject;
    ranges?: JsonObject;
    rows?: SearchResultRow[];
    total_rows: number;
}

Properties

bookmark?: string

Opaque bookmark token used when paginating results.

by?: string

Grouped search matches.

counts?: JsonObject

The counts facet syntax returns the number of query results for each unique value of each named field.

ranges?: JsonObject

The range facet syntax reuses the standard Lucene syntax for ranges to return counts of results that fit into each specified category.

Array of row objects.

total_rows: number

Number of total rows.

Generated using TypeDoc