id desde sql

app.get('/nohttps://pharos.sh/usando-sequelize-orm-con-node-js-y-express/tes/:id', function(req, res) {
  Note.findAll({ where: { id: req.params.id } }).then(notes => res.json(notes));
});
Sara Gismondi