Pagination / Limiting

  1. // Fetch 10 instances/rows
  2. Project.findAll({ limit: 10 })
  3. // Skip 8 instances/rows
  4. Project.findAll({ offset: 8 })
  5. // Skip 5 instances and fetch the 5 after that
  6. Project.findAll({ offset: 5, limit: 5 })