Я пытаюсь использовать необработанный запрос, но я получаю ошибку.Почему он считает test именем столбца?
столбец "test" не существует
module.exports = {
getUser(req, res){
var sql = 'SELECT * FROM Users As Users WHERE Users.username = "test"'
//Get the username of the user
//Search the Users_matches databse for their username and join it with the
db.sequelize.query(sql, { type: sequelize.QueryTypes.SELECT})
.then(result => {
return res.status(201).send({
result
});
})
}