Skip to content

Instantly share code, notes, and snippets.

@leorcvargas
Created June 25, 2020 00:05
Show Gist options
  • Save leorcvargas/6a1366e600a54c1270eb6fe6755ae9b1 to your computer and use it in GitHub Desktop.
Save leorcvargas/6a1366e600a54c1270eb6fe6755ae9b1 to your computer and use it in GitHub Desktop.
const getBookData = async (id) => {
const book = await getBookById(id);
const [reviews, author, sellers] = await Promise.all([
getReviewsByBookId(book.id),
getAuthorById(book.authorId),
getSellersByBookId(book.id),
]);
return { ...book, reviews, author, sellers };
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment