Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions internal/genpyxis/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -1656,8 +1656,8 @@ type ContainerRepositoryEdges {
"""Get a repository by registry and path (product line/image name)."""
replaced_by_repository(registry: String, repository: String): ContainerRepositoryResponse

"""Get a vendor by label."""
vendor(label: String): ContainerVendorResponse
"""Get the vendor for a repository."""
vendor(registry: String, repository: String): ContainerVendorResponse
}

type CertificationProjectResponse {
Expand Down Expand Up @@ -6368,6 +6368,9 @@ type PartnerSolutionProduction {
"""Controls visibility of the Partner Solution Production version"""
published: Boolean

"""Signalize priority in Catalog presentation"""
featured_solution: Boolean

"""Checksum of the 'solution_content'"""
solution_content_hash: String

Expand Down Expand Up @@ -6597,6 +6600,7 @@ type PartnerSolutionProductionPaginatedResponse {
input PartnerSolutionProductionFilter {
draft_id: ObjectIDFilter
published: BooleanFilter
featured_solution: BooleanFilter
solution_content_hash: StringFilter
solution_content: PartnerSolutionFilter
_id: ObjectIDFilter
Expand Down