disappearedIssuesInput

Input parameters for retrieving disappeared issues with filtering and pagination.

Examples

input DisappearedIssuesInput {
  scanID: String
  limit: Int!
  offset: Int!
  sort: DIssuesSort
  owners: [String]
  tagIds: [String]
  inventoryFilters: [InventoryTypes]
  dateRange: DateRange
  search: [AutoCompleteSearch]
  openItems: [FilterTypes]
  conditionalFilters: [ConditionalFilters]
  exportsOptions: IssuesExportOptions
  restrictToCategories: [Int]
  topLevelSearch: String
  topOffset: Int
  issueId: String
  scrollDirection: String
  cursorValue: String
}

Fields

Field
Description
Supported fields

scanID String

Specific scan identifier to retrieve disappeared issues from

limit Int!

Maximum number of results to return (default: 10)

offset Int!

Number of records to skip for pagination

Sorting configuration for the disappeared issues

owners [String]

Filter by application owners

tagIds [String]

Filter by tag identifiers for role-based access control

inventoryFilters [InventoryTypes]

Inventory type filters for the issues

dateRange DateRange

Date range filter for when issues disappeared

from Float to Float

Advanced search filters with autocomplete support

fieldName String value [String]

openItems [FilterTypes]

Filter for items that are currently open or active

conditionalFilters [ConditionalFilters]

Conditional filters for advanced issue filtering

condition ConditionType fieldName FilterTypes values [String] greaterThan Float lessThan Float

exportsOptions IssuesExportOptions

Export options for disappeared issues data

flattenAgg Boolean isDemoEnabled Boolean name String columns [IssuesExportColumn] rowsLimit Int

restrictToCategories [Int]

Restricts results to specific security categories

topLevelSearch String

Top level search value for the disappeared issues to search by Issue Name, CVE, or Application Name

topOffset Int

Top offset for advanced pagination

issueId String

Specific issue identifier for focused retrieval

scrollDirection String

Direction for scrolling through results

cursorValue String

A value returned by the API that represents the position of the last item in the previous page. Use this value to paginate efficiently through the results. Pass the cursorValue from the previous API response to fetch the next page of results. If omitted, the API returns the first page.

References

Queries using this object:

Last updated