Devo ordinare la raccolta prodotti per ID ordine DESC e aggiungere un limite alla raccolta prodotti. Ecco il mio codice:
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$productCollection = $objectManager->create('Magento\Catalog\Model\ResourceModel\Product\CollectionFactory');
$collection = $productCollection->create()
->addAttributeToSelect('*')
->load();