Get all restaurants for a given identifier.
Where we should look for restaurants.
A list of all restaurants for a given identifier.
const restaurants = await getRestaurantsFrom("bordeaux");for (const restaurant of restaurants) { console.log(restaurant.title, restaurant.address);} Copy
const restaurants = await getRestaurantsFrom("bordeaux");for (const restaurant of restaurants) { console.log(restaurant.title, restaurant.address);}
const feeds = await getFeeds();const restaurants = await getRestaurantsFrom(feeds[0].identifier);// ... Copy
const feeds = await getFeeds();const restaurants = await getRestaurantsFrom(feeds[0].identifier);// ...
Get all restaurants for a given identifier.