I have a directory a, with one sub directory, which contains another subdirectory. Each directory contains an image file with a ".jpg" extension (so three images in total).
When I create a search query for ".jpg" inside the folder a with max_results=3, I get a response with exactly three results. But has_more equals true. When I use the returned cursor in a request to /files/search/continue_v2, an empty result is returned with has_more=false.
I would expect the API to return has_more=false on the very first request, since there are no more results.
When I change the max_results parameter of the initial search request to 4, the response contains all (three) results and has_more=false.
Is this behaviour intended?