How can I filter through an order using order version id on a order_line_item.repository

how can I get the items of an order in shopware 6.

I am using this

argument type=„service“ id="order_line_item.repository

in my services and then try to use the version id to query below

$orderLine = $this->orderLineItemRepository
->search(new Criteria([$order->getVersionId()]), $event->getContext())
->first();

it returns a blank, please help