pagination in sequelize code example
Example: sequelize pagination postgres
const limit = 10;
const offset = (req.body.page - 1) * limit;
const result = await Posts.findAndCountAll({
offset: offset,
limit: limit,
order: [
['date', 'ASC']
]
});