techjoomla / com_api

API framework for Joomla
http://docs.techjoomla.com/joomla-rest-api/com-api-introduction
GNU General Public License v3.0
123 stars 97 forks source link

Pagination support? #56

Closed efstathiosntonas closed 7 years ago

efstathiosntonas commented 7 years ago

Does the extension supports pagination? I want to implement infinite scroll in my mobile app.

If yes, how it's impemented?

Thanks

coolbung commented 7 years ago

Hi Efstathios,

The com_api component is really a framework to build API plugins that allow you expose parts of your component as APIs.

The limit / pagination will need to be implemented by the plugin itself. You can refer the Joomla article plugin to see how pagination is implemented - https://github.com/techjoomla/com_api-plugins/blob/master/articles/articles/article.php#L75

coolbung commented 7 years ago

Closing this issue. Please reopen with more details if you face any problems.