I am making https requests in parallel for a given list of ids:
const posts = await Promise.all(usersIds.map(userId => fetchUserPosts(userId)));