Pagination / LimitingPagination / Limiting// Fetch 10 instances/rowsProject.findAll({ limit: 10 })// Skip 8 instances/rowsProject.findAll({ offset: 8 })// Skip 5 instances and fetch the 5 after thatProject.findAll({ offset: 5, limit: 5 })