Re: Query Alfresco for next set of results

2016-07-18 Thread Florian Müller
Hi, I *guess* you have to change your Alfresco configuration. See: https://docs.alfresco.com/community/tasks/search_permissions_check.html - Florian Hi Florian, I tried it by trying to get 1000 results. I ended up getting the same 1000 results every time. There will be nearly 100 r

Re: Query Alfresco for next set of results

2016-07-18 Thread Ram JB
Hi Florian, I tried it by trying to get 1000 results. I ended up getting the same 1000 results every time. There will be nearly 100 results. I don't want them at a time. But I should be able to iterate through them. Thanks and Regards, Bhargav. On Jul 8, 2016 15:28, "Florian Müller" wrote:

Re: Query Alfresco for next set of results

2016-07-08 Thread Florian Müller
Hi, queryStatement.query(false) gives you an iterator over all query results. Therefore, there is no next set of results. (Internally, it fetches the results in chunks but this is hidden from you and you don't have to care about it.) You can control paging yourself if you want. See this page: