Skip to main content

BundleSortInput

Sorting configuration for bundle search results.

Defines both the field to sort by and the direction of sorting to control result ordering.

input BundleSortInput {
field: BundleSortField!
order: SortOrder
}

Fields

BundleSortInput.field ● BundleSortField! non-null enum

Field to use for sorting bundle results.

Determines which bundle property will be used as the primary sort criteria. Validation ensures only valid sort fields are accepted.

BundleSortInput.order ● SortOrder enum

Sort direction for the specified field.

ASC: Ascending order (A-Z, 0-9, oldest-newest) DESC: Descending order (Z-A, 9-0, newest-oldest)

Validation ensures only valid sort orders are accepted.

Member Of

BundleSearchInput input