vulnerabilityDetectionByCustomerSearch
query
Searches for vulnerability detections, where an item contains information about one vulnerability found on one customer's assets. This query supports filtering, pagination, and sorting. VulnerabilityDetectionsByCustomerConnection!
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
VulnerabilityDetectionByCustomerWhereInput
Filtering options to apply to the search.
orderBy
[VulnerabilityDetectionByCustomerOrderByInput!]
Sort order to apply to the search results.
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 VulnerabilityDetectionByCustomerSearch (
  $first: Int = 20,
  $after: String,
  $where: VulnerabilityDetectionByCustomerWhereInput,
  $orderBy: [VulnerabilityDetectionByCustomerOrderByInput!],
  $inOrganization: ID,
  $inRegion: RegionInput
) {
  vulnerabilityDetectionByCustomerSearch(
    first: $first
    after: $after
    where: $where
    orderBy: $orderBy
    inOrganization: $inOrganization
    inRegion: $inRegion
  ) {
    # vulnerabilityDetectionByCustomerSearch fields
  }
}