Skip to content

CustomField Sort Clause

The CustomField Sort Clause sorts search results by raw search index fields.

Arguments

  • field - string representing the search index field name
  • (optional) sortDirection - Query or LocationQuery constant, either Query::SORT_ASC or Query::SORT_DESC

Limitations

Caution

To keep your project search engine independent, do not use the CustomField Sort Clause in production code. Valid use cases are: testing, or temporary (one-off) tools.

The CustomField Sort Clause is not available in Repository filtering.

Example

1
2
$query = new LocationQuery();
$query->sortClauses = [new SortClause\CustomField('my_custom_field_s')];