Like how you used the plugin along with /* SQL */ to increase readability
const queryStr = /* sql */ `
SELECT
place.place_name,
place.postcode,
place.rating,
users.username,
reviews.review
FROM place
LEFT JOIN reviews
ON reviews.place_id = place.place_id
LEFT JOIN users
ON reviews.author_id = users.author_id
`;
Like how you used the plugin along with
/* SQL */
to increase readability