Skip to content

Shipment Id Sort Clause

The Id Sort Clause sorts search results by shipment Id.

Arguments

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

Example

1
2
3
4
5
6
7
$shipmentQuery = new ShipmentQuery(
    $criteria,
    [
        new \Ibexa\Contracts\Shipping\Shipment\Query\SortClause\Id(
            \Ibexa\Contracts\Shipping\Shipment\Query\SortClause\Id::SORT_ASC)
    ]
);