How to insert the array structure Sequelize at one time?

var data = [{
  id:1
}
,{
  id:2
}
,{
  id:3
}]

is similar to this structure. An element object in data corresponds to a record in a database table.
then Sequelize how to do it all at once?


Model.bulkCreate (datas)

Menu