I am trying to get all the folder items through java SDK. https://developer.box.com/reference/get-folders-id-items/
I want to specify the Offset, Limit and also sort the results by date. I see :
getChildren() – allows to sort the results and returns an iterable.
getChildrenRange() – allows to specify offset, Limit and returns a partial collection.
Is there any function or straightforward way to combine the above two? I see this functionality in python sdk but not in java.