OciManifest
A JSON document describing the structure of an image or artifact, including its layers and configuration
type OciManifest {
  mediaType: String!
  digest: String!
  blobs: [OciBlob]
}
Fields
OciManifest.mediaType ● String! non-null scalar
The media type of this manifest (e.g., application/vnd.oci.image.manifest.v1+json)
OciManifest.digest ● String! non-null scalar
Content-addressable identifier of this manifest (e.g., sha256:abcd...)
OciManifest.blobs ● [OciBlob] list object
The blobs (layers and config) that make up this image or artifact
Returned By
ociManifest  query