-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sorting #17
Comments
Here is where in the code it should happen: Elasticquent/src/ElasticquentTrait.php Line 262 in 4d16e2d
|
what's the param for sort? string 'asc' or 'desc'? because none of them work. |
You need to pass through thr ElasticSearch sort params. Example: https://www.elastic.co/guide/en/elasticsearch/reference/current/search-request-sort.html |
Appreciate the info. I tried '{"sort":[{"id" : {"order" : "asc"}},"_score"]}' only to get search_parse_exception: No mapping found. Would someone assist in the correct format? Thanks. |
Hi adamfairholm, thanks for providing this package. It gave me quite a quick entry into using Elasticsearch and Laravel compared to using Symfony 2 and Elastica which took me longer to wrap my head around.
In the documentation, under searching, you listed the parameters to the searchByQuery method and the last one was sort. I have however gone through your code and seen that the last parameter is offset and there is nowhere in the code where sorting is implemented. Is this an omission? How can I pass a sort query to elasticsearch via Elasticquent?
Thanks
Steve
The text was updated successfully, but these errors were encountered: