ociRepos
List OCI repositories in your organization's bundle catalog.
Returns a paginated list of repositories. Each repository is the container
for all published versions of a bundle. Use filter to narrow by name,
artifact type, or full-text search.
query {
ociRepos(organizationId: "your-org-id", filter: { name: { startsWith: "aws-" } }) {
items {
id
name
tags(sort: { field: VERSION, order: DESC }) {
items { tag }
}
}
cursor { next }
}
}
ociRepos(
organizationId: ID!
filter: OciReposFilter
sort: OciReposSort
cursor: Cursor
): OciReposPage
Arguments
ociRepos.organizationId ● ID! non-null scalar {#organization-id}
Your organization's unique identifier.
ociRepos.filter ● OciReposFilter input {#filter}
Narrow results by name, artifact type, or search term.
ociRepos.sort ● OciReposSort input {#sort}
Explicit sort order. Defaults to name ascending. When a search filter is active and no sort is provided, results are ranked by relevance.
ociRepos.cursor ● Cursor input {#cursor}
Cursor from a previous page's cursor.next or cursor.previous.