get_repository_by_registry_path#

Get a repository by registry and path (product line/image name).

Arguments#

registry | String required

Container registry. All Red Hat containers use the value of ‘registry.access.redhat.com’ (regardless of whether they are shipped only to the terms-based registry at registry.redhat.io). Partner containers use the value of ‘registry.connect.redhat.com’.

repository | String required

Path of the repository.

Returns#

response_type | single

response_object | Container Repository

Query example:

{
  get_repository_by_registry_path(registry: "example", repository: "example") {
    error {
      detail
      status
    }

    data {
      _id
    }
  }
}