Interface InputSearchSort

Sets how results should be sorted. After sorting by all the options provided in sort param, or in case sort param is not set, results will be sorted by relevance. For example, if you set sort by availability status, products with the same availability status will be sorted by relevance.

interface InputSearchSort {
    field: string;
    order: SearchSortOrder;
}

Properties

Properties

field: string