Skip to content
This repository was archived by the owner on Jan 30, 2026. It is now read-only.

Commit 2d8d947

Browse files
Merge pull request #82 from opdev/pyxis-schema-update-1764809082
Update generated schema and code for Pyxis
2 parents 9f2040e + 5fccdd3 commit 2d8d947

File tree

1 file changed

+18
-6
lines changed

1 file changed

+18
-6
lines changed

internal/genpyxis/schema.graphql

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -551,7 +551,9 @@ type ContainerImage {
551551
"""
552552
sum_layer_size_bytes: Int64
553553

554-
"""Field for multiarch primary key"""
554+
"""
555+
The content identifier (sha256 digest) of the final, topmost layer in the container image. This ID corresponds to the layer at the highest index within the parsed_data.layers array.
556+
"""
555557
top_layer_id: String
556558

557559
"""
@@ -659,7 +661,9 @@ type ParsedData {
659661
image_id: String
660662
labels: [Label]
661663

662-
"""Layer digests from the image."""
664+
"""
665+
An ordered list of container layers extracted from the image manifest. Layers are sorted from base layer (index 0) to top layer.
666+
"""
663667
layers: [String]
664668
os: String
665669
ports: String
@@ -670,7 +674,9 @@ type ParsedData {
670674
"""Size of this image as reported by image metadata."""
671675
size: Int64
672676

673-
"""Information about uncompressed layer sizes."""
677+
"""
678+
Information about uncompressed layer sizes. The ordered list starts from top layer to base layer.
679+
"""
674680
uncompressed_layer_sizes: [UncompressedLayerSize]
675681

676682
"""Uncompressed images size in bytes (sum of uncompressed layers size)."""
@@ -6584,7 +6590,9 @@ input ContainerImageInput {
65846590
"""
65856591
sum_layer_size_bytes: Int64
65866592

6587-
"""Field for multiarch primary key"""
6593+
"""
6594+
The content identifier (sha256 digest) of the final, topmost layer in the container image. This ID corresponds to the layer at the highest index within the parsed_data.layers array.
6595+
"""
65886596
top_layer_id: String
65896597

65906598
"""
@@ -6682,7 +6690,9 @@ input ParsedDataInput {
66826690
image_id: String
66836691
labels: [LabelInput]
66846692

6685-
"""Layer digests from the image."""
6693+
"""
6694+
An ordered list of container layers extracted from the image manifest. Layers are sorted from base layer (index 0) to top layer.
6695+
"""
66866696
layers: [String]
66876697
os: String
66886698
ports: String
@@ -6693,7 +6703,9 @@ input ParsedDataInput {
66936703
"""Size of this image as reported by image metadata."""
66946704
size: Int64
66956705

6696-
"""Information about uncompressed layer sizes."""
6706+
"""
6707+
Information about uncompressed layer sizes. The ordered list starts from top layer to base layer.
6708+
"""
66976709
uncompressed_layer_sizes: [UncompressedLayerSizeInput]
66986710

66996711
"""Uncompressed images size in bytes (sum of uncompressed layers size)."""

0 commit comments

Comments
 (0)