CompanySearchSortInput
Sorting configuration for company search results.
Defines how company search results should be ordered including the field to sort by and the sort direction. Multiple sort inputs can be combined for complex sorting logic.
input CompanySearchSortInput {
field: CompanySearchSortField!
order: SortOrder!
}
Fields
CompanySearchSortInput.field
● CompanySearchSortField!
non-null enum
Company field to use for sorting.
Specifies which company attribute should be used as the primary sort key. Options include relevance, name, creation date, and other company properties.
CompanySearchSortInput.order
● SortOrder!
non-null enum
Sort direction for the specified field.
Determines whether results are sorted in ascending (A-Z, oldest first) or descending (Z-A, newest first) order. Defaults to ascending if not specified.
Member Of
CompanySearchInput
input