Does the RestAPI allow for wild cards, as I have tried * and % as they are as well as their URL encoded versions when trying to get it to list all packages, by using tag, but none of those attempts work.
query=tag:*
query=tag:%
As : also has to be encoded
query=tag%3A%2A
query=tag%3A%25
As GetPackages needs its query, how can I force it to return all packages?