Hi
I've got an array with ids I want to load. I tried the following but the result was always the product with the first id from $productstoload:
//$productstoload is the array with the ids
$products = Product::find([
[
'$or' => $productstoload
]
]);
Thank you for your help!