Skip to content
This repository was archived by the owner on Jan 30, 2026. It is now read-only.
Merged
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
24 changes: 24 additions & 0 deletions internal/genpyxis/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ directive @post_fetch(functions: [String]) on FIELD_DEFINITION | OBJECT

directive @post_serialize(functions: [String]) on FIELD_DEFINITION | OBJECT

directive @reference_entity(functions: [String]) on FIELD_DEFINITION | OBJECT

directive @inaccessible on FIELD_DEFINITION | OBJECT

directive @serialize(schema: String, format: String, decrypt: String) on FIELD_DEFINITION | OBJECT

directive @mongodb_create_one(collection: String, database: String) on FIELD_DEFINITION | OBJECT
Expand Down Expand Up @@ -4711,6 +4715,12 @@ type RpmsItems {

"""RPM version."""
version: String

"""RPM epoch."""
epoch: String

"""RPM module."""
module: String
}

type ContainerImageRPMManifestEdges {
Expand Down Expand Up @@ -5799,6 +5809,9 @@ type ContainerRepositoryFederated {
"""Marketplace related information."""
marketplace: ContainerRepositoryMarketplace

"""List of products that are part of the product listing."""
products: [Product]

"""MongoDB unique _id"""
_id: ObjectID

Expand All @@ -5811,6 +5824,11 @@ type ContainerRepositoryFederated {
last_update_date: DateTime
}

type Product {
"""Engineering id of the product."""
itProductServiceId: ID
}

type ContainerRepositoryFederatedConnection {
pageInfo: PageInfo!
totalCount: Int
Expand Down Expand Up @@ -6693,6 +6711,12 @@ input RpmsItemsInput {

"""RPM version."""
version: String

"""RPM epoch."""
epoch: String

"""RPM module."""
module: String
}

"""Contain status and related metadata of a certProject image request."""
Expand Down