await Promise.all(foundArticles.map(async (article) => {
      try {
        const userDetails = await UserModel.getOneUser(article.authorId);
        const { username, image } = userDetails;
        const readTime = Helper.calculateReadTime(article.body);