Answers for "sequelize include only"

2

sequelize include only

Payment.findAll({
    where: {
        DairyId: req.query.dairyid
    },
    attributes: {
        exclude: ['createdAt', 'updatedAt']
    },
    include: {
        model: Customer,
        attributes:['customerName', 'phoneNumber']
    }
})
Posted by: Guest on February-07-2021
2

sequelize include twice

Test.findAll({
    include: [
        { model: Model1 },
        { model: Model2 }
    ]
});
Posted by: Guest on March-29-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language