How to get the list of all artifacts from Azure feed. Below command is working fine, but getting only first 1000 artifacts.
@ReposList = `curl -u username\@abc.com:key -X GET "https://feeds.dev.azure.com/abc/ProjectName/_apis/packaging/Feeds/FeedName/packages?api-version=5.1-preview.1"`;
But, how we can get rest of the artifacts as well ?
Can some one help on this !