sequelize exclude attribute

Solutions on MaxInterview for sequelize exclude attribute by the best coders in the world

showing results for - "sequelize exclude attribute"
Sofia
01 Feb 2016
1User
2  .findAll({
3    attributes: {exclude: ['password']},
4    order: [['id','DESC']]})
5  .then( users => {
6    return reply( ReplyUtil.ok(users) );
7  })
8  .catch( err => {
9    return reply( ReplyUtil.badImplementation(err) );
10  });
11
Salomé
01 Jan 2019
1attributes: []