getSbomInput

Defines input parameters for retrieving SBOM libraries with enhanced filtering and pagination support.

Examples

input GetSbomInput {
  scanId: String
  conditionalFilters: [ConditionalFilters]
  search: String
  limit: Int
  offset: Int
  sort: SbomLibSortInput
  owners: [String]
  tagIds: [String]
  forCSV: Boolean
  appPage: Boolean
  cursorValue: String
  getLatestStableData: Boolean
}

Fields

Field
Description
Supported fields

scanId String

Specific scan identifier to retrieve libraries from

conditionalFilters [ConditionalFilters]

Conditional filters to apply for advanced querying

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

search String

Text search query to find specific libraries

limit Int

Maximum number of libraries to return

offset Int

Number of libraries to skip for pagination

Sorting configuration for the results

owners [String]

Filter by application owners

tagIds [String]

Filter by tag identifiers for role-based access control

forCSV Boolean

Flag indicating if this request is for CSV export

appPage Boolean

Flag indicating if this request is for application page

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.

getLatestStableData Boolean

Flag indicating if this request is for the latest stable/complete scan data

References

Queries using this object:

Last updated