scanAll

Trigger a scan of all configured connectors.

Examples

mutation ScanAll($isFullScan: Boolean, $isContainerFullScan: Boolean, $isExternalToolFullScan: Boolean) {
  scanAll(isFullScan: $isFullScan, isContainerFullScan: $isContainerFullScan, isExternalToolFullScan: $isExternalToolFullScan) {
    scanID
    isFullScan
    isContainerFullScan
    isSingleRepoScan
  }
}

Variables

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

{
  "isFullScan": true,
  "isContainerFullScan": true,
  "isExternalToolFullScan": true
}

Arguments

You can use the following argument(s) to customize your scanAll mutation.

Argument
Description
Supported fields

isFullScan Boolean

isContainerFullScan Boolean

isExternalToolFullScan Boolean

Fields

Return type: ScanResponse

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

Field
Description
Supported fields

scanID String

Unique identifier for tracking the scan progress

isFullScan Boolean

Indicates if this is a full code scan rather than an incremental scan

isContainerFullScan Boolean

Indicates if this is a full container scan rather than an incremental scan

isSingleRepoScan Boolean

Indicates if this is a scan of a single repository

Last updated