module.exports = async (dbConn, id) => { const country = await dbConn.query( `SELECT countries.id AS country_id, countries.country AS name, countries.description FROM countries WHERE countries.id = ?`, [id] ); return country; };