Shipment UpdatedAt Sort Clause
The UpdatedAt Sort Clause sorts search results by the date and time when shipment status was updated.
Arguments
- (optional)
sortDirection - UpdatedAt constant, either UpdatedAt::SORT_ASC or UpdatedAt::SORT_DESC
Example
| 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\UpdatedAt(
\Ibexa\Contracts\Shipping\Shipment\Query\SortClause\UpdatedAt::SORT_ASC
),
]
);
|