INTERFACE
ArtifactMetadataVersion
Represents version of an artifact metadata. Each version of metadata may have different SBOM (Or any other future metadata) information.
link GraphQL Schema definition
- interface ArtifactMetadataVersion {
- # Artifact metadata with which this version is associated
- ArtifactMetadata! :
- # Domain-specific artifact metadata version identifier
- String! :
- # List of SBOMs associated with this artifact metadata version
- #
- # Arguments
- # after: Return records after the given cursor, as per GraphQL
- # Relay spec
- # before: Return records before the given cursor, as per GraphQL
- # Relay spec
- # filter: [Not documented]
- # first: Return first N records in a paged response, as per
- # GraphQL Relay spec
- (
- String, :
- String, :
- QueryFilter, :
- Int :
- ): ArtifactSBOMConnection!
- # Timestamp at which this version is created. Expressed in UTC ISO-8601 format
- DateTime! :
- # external version identifier, this may represent a RepositoryVersion or a
- # CatalogItem identifier
- String! :
- # Global opaque identifier to meet Node contract
- ID! :
- }