OBJECT

ArtifactVulnerabilityEntityRelationship

Relationship between a ArtifactVulnerability and Entities

link GraphQL Schema definition

  • type ArtifactVulnerabilityEntityRelationship implements Node {
  • # Connection of entities that have this vulnerability,
  • # If entityId and entityType filters are not passed, then all entities on which
  • # this vulnerability is reported and related application(Tanzu.Hub.Application)
  • # entities will be returned.
  • # even if the vulnerability is not directly reported on the application but is
  • # reported on any related entity
  • #
  • # If entityId is passed and entityType is Tanzu.Hub.Application,
  • # then all vulnerabilities reported on entities that are related to passed
  • # Application Entity on which the vulnerability is reported will be returned.
  • # If this vulnerability is directly reported on the Application Entity it will
  • # also be returned
  • #
  • # If entityId is passed and entityType is not Tanzu.Hub.Application, then only
  • # Entity with requested entityId will be returned
  • #
  • # If entityType is passed then all entities of given type on which this
  • # vulnerability is reported will be returned
  • #
  • # Arguments
  • # after: [Not documented]
  • # before: [Not documented]
  • # entityId: [Not documented]
  • # entityName: [Not documented]
  • # entityType: [Not documented]
  • # first: [Not documented]
  • affectedEntities(
  • after: String,
  • before: String,
  • entityId: [EntityId!],
  • entityName: [String!],
  • entityType: [String!],
  • first: Int
  • ): ArtifactVulnerabilityEntityDetailsConnection!
  • # When the vulnerability was first detected in any affected entity
  • creationTime: DateTime!
  • # Opaque global node ID , as per Node specification
  • id: ID!
  • # Summary containing affected entity counts, and impacted package version
  • summary: ArtifactVulnerabilityEntityRelationshipSummary
  • # ArtifactVulnerability that represents the vulnerability for this mapping
  • vulnerability: HubArtifactVulnerability!
  • }