issuesInput
Input parameters for retrieving and filtering security issues. Provides comprehensive options for customizing the issues query including filtering, sorting, pagination, and search capabilities.
Examples
input IssuesInput {
scanID: String
limit: Int!
page: Int
search: [AutoCompleteSearch]
offset: Int
sort: IssuesSort
owners: [String]
tagIds: [String]
inventoryFilters: [InventoryTypes]
dateRange: DateRange
limitAggItems: Int
offsetAggItems: Int
ignoreEnvCheck: Boolean
exportsOptions: IssuesExportOptions
issueId: String
topOffset: Int
topLevelSearch: String
scrollDirection: String
openItems: [FilterTypes]
conditionalFilters: [ConditionalFilters]
cursorValue: String
}Fields
scanID String
Retrieve issues associated with a specific scan execution
limit Int!
Maximum number of issues to return in a single response (default: 10, max: 1000)
page Int
Page number for pagination (Deprecated, use offset instead)
search [AutoCompleteSearch]
List of search filters for finding specific issues
fieldName String
value [String]
offset Int
Number of records to skip for pagination
sort IssuesSort
Sorting instructions for the returned issues
fields [IssueSortByFields]
order [Direction]
owners [String]
Filter issues by specific owner identifiers
tagIds [String]
Filter issues by tag identifiers for RBAC scoping
limitAggItems Int
Maximum number of aggregation items to return
offsetAggItems Int
Number of aggregation items to skip
ignoreEnvCheck Boolean
Bypass environment checks for organizational stats queries
exportsOptions IssuesExportOptions
Options for controlling issue export behavior
flattenAgg Boolean
isDemoEnabled Boolean
name String
columns [IssuesExportColumn]
rowsLimit Int
issueId String
Filter by specific issue identifier
topOffset Int
Offset for top-level issues results
topLevelSearch String
Search string for top-level issue search
scrollDirection String
Direction for scrolling through paginated results
conditionalFilters [ConditionalFilters]
Complex conditional filters for advanced filtering
condition ConditionType
fieldName FilterTypes
values [String]
greaterThan Float
lessThan Float
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. If the cursor does not match the requested sort, the API returns an INVALID_CURSOR error. Discard the cursor and request the first page again.
References
Queries using this object:
Last updated
