I use RAW
format repository in my Nexus called myrepo
. I upload files such as .tar.gz
, zip
, exe
...etc. In this repository I've many sub-folders and files and now I want to list all of the files with API
.
I use this execution, generated by Nexus UI:
curl -X GET "http://localhost:8081/service/rest/v1/search?repository=myrepo&format=raw" -H "accept: application/json"
The problem is that results are not full. The result are around 1000 lines of json, but there are another files which are missing from the results.
I've also try to filter by name:
curl -X GET "http://localhost:8081/service/rest/v1/search?q=update&repository=myrepo&format=raw" -H "accept: application/json"
but is the same - The list is not complete.
My question is: