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
 8
 9
10
11
use Ibexa\Contracts\Shipping\Shipment\ShipmentQuery;

/** @var \Ibexa\Contracts\Shipping\Shipment\Query\CriterionInterface $criteria */
$shipmentQuery = new ShipmentQuery(
    $criteria,
    [
        new \Ibexa\Contracts\Shipping\Shipment\Query\SortClause\Id(
            \Ibexa\Contracts\Shipping\Shipment\Query\SortClause\Id::SORT_ASC
        ),
    ]
);