Camunda Task Engine pagination

Hi.
Is there a method to retrieve tasks in chunks? For example the 0-10 tasks, then the 10-20 tasks, and so on?
From what I see here: Camunda Tasks there isn’t a parameter to do this, but maybe I’m missing something.
Thanks

Check firstResult and maxResults parameters.

firstResult Pagination of results. Specifies the index of the first result to return.
maxResults Pagination of results. Specifies the maximum number of results to return. Will return less results if there are no more results left.

Thanks.
Will check by immediately