Skip to content

Shipment Identifier Sort Clause

The Identifier Sort Clause sorts search results by shipment identifier.

Arguments

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

Example

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