getUnscannedArtifacts

Retrieves unscanned artifacts with filtering and pagination support.

Examples

query GetUnscannedArtifacts($getUnscannedArtifactsInput: GetUnscannedArtifactsInput) {
  getUnscannedArtifacts(getUnscannedArtifactsInput: $getUnscannedArtifactsInput) {
    unscannedArtifacts {
      id
      artifactId
      registryType
      registryName
      registryLink
      imageName
      imageTags
      imageCreationDate
      imageDigest
      reason
      error
      scanId
      cloudData {
        cloudIdentifier
        link
        lastExecutionTime
        lastModifiedTime
        account
        zone
        cluster
        cloudDescription {
          type
          subType
          cloudEntityAttributes {
            ... on ECS {
              os
              cpu
              memory
              containers
              registeredAt
              registeredBy
              account
              zone
            }
          }
        }
      }
    }
    offset
    total
    totalFilteredUnscannedArtifacts
  }
}

Variables

This is an example input showing all available input fields. Only fields marked as required in the schema are mandatory.

Arguments

You can use the following argument(s) to customize your getUnscannedArtifacts query.

Argument
Description
Supported fields

getUnscannedArtifactsInput GetUnscannedArtifactsInput

Input parameters for filtering, sorting, and pagination

limit Int offset Int sort UnscannedArtifactSort dateRange DateRange filters UnscannedArtifactFilters owners [String] search String openItems [FilterTypes] topFilters [UnscannedArtifactTopFilters]

Fields

Return type: UnscannedArtifactsResponse

You can use the following field(s) to specify what information your getUnscannedArtifacts query will return. Please note that some fields may have their own subfields.

Field
Description
Supported fields

unscannedArtifacts [UnscannedArtifact]

Unscanned Artifacts

id String artifactId String registryType String registryName String registryLink String imageName String imageTags [String] imageCreationDate String imageDigest String reason String error String scanId String cloudData [CloudArtifactData]

offset Int

Offset Value for Virtualization

total Int

Total Unscanned Artifacts Count

totalFilteredUnscannedArtifacts Int

Total Filtered Unscanned Artifacts Count

Last updated