“SECUSIZAR EXCLUY ATRIBUTOS” Código de respuesta

SECUSIZAR ATRIBUTO DE EXCLUDE

User
  .findAll({
    attributes: {exclude: ['password']},
    order: [['id','DESC']]})
  .then( users => {
    return reply( ReplyUtil.ok(users) );
  })
  .catch( err => {
    return reply( ReplyUtil.badImplementation(err) );
  });
Ham-Solo

excluir la consulta de secuelas de atributos

MyModel.findAll({
  attributes: {exclude: ['some_field']}
});
Real Reindeer

SECUSIZAR EXCLUY ATRIBUTOS

const my_model = await MyModel.findById(id, {
  include: [
    {
      model: AnotherModel,
      attributes: [ 'displayName', 'email' ] // only these attributes returned
    },
    { model: YetAnotherModel,
      include: [{
        model: AnotherModel,
        attributes: [ 'id', 'displayName', 'email' ]
      }]
    }
  ]
})
AnswerHunter

Respuestas similares a “SECUSIZAR EXCLUY ATRIBUTOS”

Preguntas similares a “SECUSIZAR EXCLUY ATRIBUTOS”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código