forked from ErickTamayo/laravel-scout-elastic
-
Notifications
You must be signed in to change notification settings - Fork 6
Open
Labels
Description
Hi,
I am searching news in my project, and i need to order them by published_at:desc first. But the package is adding _score before all sortings in query. If you are ok, i can do a PR and add a config key for it. So it will be changeable by project.
The code i am talking about is below. Waiting for your response. Thanks.
// Sorting
if(isset($options['sorting']) && count($options['sorting'])) {
$params['body']['sort'] = array_merge($params['body']['sort'],
$options['sorting']);
}