Could you please provide guidance on BoxSDK?
When retrieving folder IDs using BoxSDK, we are encountering an issue where multiple folder IDs are returned even though only one folder should exist.
The following method is being looped, and more than 200 folder IDs are being obtained.
Since we have specified modified_at for sorting, we suspect that this issue occurs because the timing of folder updates overlaps with the timing of the loop that retrieves folder IDs. Is this assumption correct?
Also, could you please advise on how to avoid this issue?
method : BoxClient.SearchManager.QueryAsync()
parameter : limit:200,sort: "modified_at",offset:[1+200*n]
