The following works for sequelize v4.
...
const order = Order.findOne(criteria);
order.setDataValue('additionalProperty', 'some value');
...
Hope this helps. It’s a bit late but in case people are still looking for answers.
The following works for sequelize v4.
...
const order = Order.findOne(criteria);
order.setDataValue('additionalProperty', 'some value');
...
Hope this helps. It’s a bit late but in case people are still looking for answers.