final DbxClientV2 dbxClient = dropboxService.getDropboxClient(user.getAccessToken());
try {
final ListFolderResult listResult = dbxClient.files()
.listFolderBuilder(path)
.withRecursive(true)
.start();
....
}

Using this piece of code, I get as a result a single folder but in reality that's not the case. This behavior just started to happen today. Up until today, the result contained all files/folders that actually exist in that path... so I was wondering if there is any limit in size or number of files based on which the result object is populated...
The folder I'm trying to list from, contains 3.5K files, with a total of 7GB in size..