vulnerabilityDetectionSearch
query
Searches for vulnerability detections. A detection occurs when a known vulnerability is mapped to a specific software version found on an asset. This query supports filtering, pagination, and sorting. VulnerabilityDetectionConnection!
Arguments
first
Int
default: 20
Page size. Max: 1000.
after
String
Return results after the provided cursor. Use the `endCursor` value from the previous page's `pageInfo` to paginate.
where
VulnerabilityDetectionWhereInput
Filtering options, e.g. to filter detections by asset type or critical vulnerabilities.
orderBy
[VulnerabilityDetectionOrderByInput!]
Sort order.
inOrganization
ID
Specifies which organization to search. If omitted, it will search user's entire scope. Providing an ID is recommended for faster query performance.
inRegion
RegionInput
Specifies which region to search. If omitted, the region will be inferred from the user's scopes.
Example Operation
# N-able GraphQL Operation

query VulnerabilityDetectionSearch (
  $first: Int = 20,
  $after: String,
  $where: VulnerabilityDetectionWhereInput,
  $orderBy: [VulnerabilityDetectionOrderByInput!],
  $inOrganization: ID,
  $inRegion: RegionInput
) {
  vulnerabilityDetectionSearch(
    first: $first
    after: $after
    where: $where
    orderBy: $orderBy
    inOrganization: $inOrganization
    inRegion: $inRegion
  ) {
    # vulnerabilityDetectionSearch fields
  }
}