OBJECT

SpringArtifactMetadataVersion

Spring Artifact Metadata version

link GraphQL Schema definition

  • type SpringArtifactMetadataVersion implements ArtifactMetadataVersion, Node {
  • # Artifact metadata with which this version is associated
  • artifactMetadata: SpringArtifactMetadata!
  • # Domain-specific artifact metadata version identifier
  • artifactMetadataVersionId: 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: This is not supported as of now, will be supported in
  • # future
  • # first: Return first N records in a paged response, as per
  • # GraphQL Relay spec
  • # sbomFilter: [Not documented]
  • artifactSBOM(
  • after: String,
  • before: String,
  • filter: QueryFilter,
  • first: Int,
  • sbomFilter: SpringArtifactSBOMFilterInput
  • ): SpringArtifactSBOMConnection!
  • assessment: SpringArtifactAssessment
  • # Timestamp at which this version is created. Expressed in UTC ISO-8601 format
  • creationTime: DateTime!
  • # external version identifier, this may represent a RepositoryVersion or a
  • # CatalogItem identifier
  • externalVersionId: String!
  • # Global opaque identifier to meet Node contract
  • id: ID!
  • # The repository version associated with this metadata version
  • repositoryVersion: SpringArtifactRepositoryVersion
  • }