@maschinenlesbar.org/deutsche-digitale-bibliothek-cli
    Preparing search index...

    Interface SolrResponseBody

    The response block of a Solr result: the hit count plus this page of docs.

    interface SolrResponseBody {
        docs: SolrDoc[];
        maxScore?: number;
        numFound: number;
        numFoundExact?: boolean;
        start: number;
    }
    Index
    docs: SolrDoc[]
    maxScore?: number

    Best relevance score in the page (absent for non-scoring sorts).

    numFound: number

    Total number of matching documents, independent of rows.

    numFoundExact?: boolean

    Whether numFound is exact or a lower bound (Solr may approximate).

    start: number

    Offset of the first returned document (the start you paged to).