The matching countries
Search among the countries by their name
const country = await searchByName('United States');
const country = await searchByName('United States', { exact: true });
const country = await searchByName('United States', { fields: ['name', 'capital'] });
The name to search for