repos
List all bundle repositories with pagination, sorting, and search capabilities.
Returns a paginated list of repositories (bundles) that the authenticated user has access to within the specified organization. Each repository can contain multiple releases with different version strategies (stable vs development).
repos(
organizationId: ID!
sort: ReposSort
cursor: Cursor
search: String
): ReposPage
Arguments
repos.organizationId ● ID! non-null scalar
Organization ID to scope the query
repos.sort ● ReposSort input
Sort repositories by name or creation date. Defaults to name ascending.
repos.cursor ● Cursor input
Pagination cursor with limit and next/previous tokens for cursor-based pagination
repos.search ● String scalar
Full-text search with Google-style operators (AND, OR, -, quotes). Searches across the most recent release's name, description, and operator guide.
Syntax:
- "word1 word2" → OR (matches either)
- "word1 AND word2" → both required
- "-word" → exclude term
- "\"exact phrase\"" → exact match
Examples:
- "postgres AND aws -aurora"
- "kubernetes AND (gcp OR azure)"
- "\"load balancer\""