const ops = items.map(item =>
({ updateOne: {
filter: { id: item.id, country: item.country},
update: { $set: {item} }, upsert: true }
}));
$set podle syntaxe očekáváme { id:item.id, country:item.country} než jen id:item.id, country:item.country prochází.