“Sequellize mengecualikan atribut” Kode Jawaban

Sequellize Exclude Atribut

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

Kecualikan Atribut Kueri Sequelize

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

Sequellize mengecualikan atribut

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

Jawaban yang mirip dengan “Sequellize mengecualikan atribut”

Pertanyaan yang mirip dengan “Sequellize mengecualikan atribut”

Lebih banyak jawaban terkait untuk “Sequellize mengecualikan atribut” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya