Skip to content

ProductAvailability Sort Clause

The ProductAvailability Sort Clause sorts search results by whether they have availability or not.

Arguments

  • (optional) sortDirection - Query or LocationQuery constant, either Query::SORT_ASC or Query::SORT_DESC

Example

1
2
3
4
5
6
7
$query = new ProductQuery(
    null,
    null,
    [
        new \Ibexa\Contracts\ProductCatalog\Values\Product\Query\SortClause\ProductAvailability()
    ]
);