I would like to know if Sonatype Nexus Repository OSS 3 supports querying on specific repositories, i.e, I need to filter the results from the docker_hosted_repo, but on the other hand, everything in docker_group_repo should be returned. According to the official documentation, the only available attributes are format and path.
Something like (pseudo expression):
format == "docker" and (path =~ "^my_compay/.*" and repo == "docker_hosted_repo") or (path =~ ".*" and repo == "docker_group_repo")
