I have an array of ids such as [1,2,3,4]. And i like to delete all the instance in a single go.
I tried to use bulkDelete of sequelize.js but it throws an error showing bulkDelete not a method. If i use destroy method of sequelize then only single entity is removed or deleted. While looping the delete clause it deletes the entry but the server stops.