INPUT_OBJECT

ArtifactVulnerabilityEntityOvertimeFilterInput

Filter vulnerability overtime by cveId or entityId ( supported entity types Tanzu.Hub.Application ) Note: Combination of cveId and entityId is not supported, at any time we can query by either cveId or entityId. if neither is passed all vulnerabilities over time will be reported

link GraphQL Schema definition

  • input ArtifactVulnerabilityEntityOvertimeFilterInput {
  • # CVE_ID of vulnerability for which vulnerability overtime is requested
  • cveId: [String!]
  • # if specified only vulnerabilities reported till endDate will be reported.
  • endDate: Date
  • # Entity id for application for which vulnerability overtime is requested, only
  • # supported entityType : Tanzu.Hub.Application
  • entityId: [EntityId!]
  • # minimum time interval, this defaults to DAILY
  • precision: ArtifactVulnerabilityOvertimePrecision
  • # if specified only vulnerabilities reported after startDate will be reported.
  • startDate: Date
  • }