Hi,
I am using Open CMIS to query a repository.
One of my query shall return a lot of results (500+).
However, the results I get are limited to 100 items.
Is it an Alfresco or an Open Cmis limitation ?
Can I change this value using a property ?
Here is my code to query the Alfresco repository :
ItemIterable<QueryResult> results = session.query(myQuery,false);
for (QueryResult result : results) {
// Do something with the results...
}
I am using Open CMIS 0.5.0 and Alfresco community 3.4d
Thanks,
Christophe