interface DocumentSearchResponse {
    aggregates?: DocumentSearchAggregate[];
    items: DocumentSearchItem[];
    nextCursor?: string;
}

Properties

nextCursor?: string

The cursor to get the next page of results (if available). The search endpoint only gives a limited number of results. A missing nextCursor does not imply there are no more results for the provided search.