Skip to content
Closed
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
16 changes: 10 additions & 6 deletions internal/genpyxis/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -6377,11 +6377,6 @@ type PartnerSolutionProduction {
"""MongoDB unique _id"""
_id: ObjectID

"""
Red Hat Org ID / account_id from Red Hat SSO. Also corresponds to company_org_id in Red Hat Connect.
"""
org_id: Int

"""
The date when the entry was created. Value is created automatically on creation.
"""
Expand Down Expand Up @@ -6496,6 +6491,12 @@ type SolutionPartner {

"""Flag to mark primary partner for the Solution"""
primary: Boolean

"""Flag to mark whether partner is focused."""
focus_partner: Boolean

"""Partner logo uri."""
logo_uri: URI
}

"""Media resource for the Partner Solution"""
Expand Down Expand Up @@ -6599,7 +6600,6 @@ input PartnerSolutionProductionFilter {
solution_content_hash: StringFilter
solution_content: PartnerSolutionFilter
_id: ObjectIDFilter
org_id: IntFilter
creation_date: DateTimeFilter
last_update_date: DateTimeFilter
eq: NULL
Expand Down Expand Up @@ -6724,6 +6724,8 @@ input SolutionPartnerFilter {
id: StringFilter
company_name: StringFilter
primary: BooleanFilter
focus_partner: BooleanFilter
logo_uri: URIFilter
eq: NULL
ne: NULL
and: [SolutionPartnerFilter]
Expand All @@ -6737,6 +6739,8 @@ input SolutionPartnerListFilter {
id: StringFilter
company_name: StringFilter
primary: BooleanFilter
focus_partner: BooleanFilter
logo_uri: URIFilter
eq: NULL
ne: NULL
and: [SolutionPartnerFilter]
Expand Down