Newer
Older
<?php
namespace IQDEV\ElasticSearch\Search\Sorting;
class SortingPropertyNumberPair extends SortingPair
{
public function es(): array
{
return [
'search_data.number_facet.facet_value' => [
'order' => $this->direction,
'nested' => [
'path' => 'search_data',
'filter' => [
'bool' => [
'must' => [
'term' => [
'search_data.number_facet.facet_code' => $this->by,
]
],
],
],
],
],
];
}
}