We have moved our forum to GitHub Discussions. For questions about Phalcon v3/v4/v5 you can visit here and for Phalcon v6 here.

How can I make this query in the ORM?

SELECT * FROM users LIMIT 4,7

This way:

Users::query()
  ->limit(4, 7)
  ->execute();