interface FindWithPaginationOptions<T> {
    apply?: Document[];
    custom?: Document[] | SearchAggregatorType;
    filter: Filter<T>;
    pagination?: PaginationOptions;
    sortParams: SortParam<T>[];
}

Type Parameters

  • T extends object

Properties

apply?: Document[]
custom?: Document[] | SearchAggregatorType

custom search

filter: Filter<T>
pagination?: PaginationOptions

pagination options

sortParams: SortParam<T>[]

sort parameters

Generated using TypeDoc