Is there a way to make them newline, if I break the line it will get an error but writing it this way will be quite unreadable. I use Sequelize
{
    const users = await db.sequelize.query(
        'SELECT count(name) as `counT` FROM users, reviews where users.id = reviews.userId group by users.name',
        {    
            type: QueryTypes.SELECT,
        }
    );
}
 
    