We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Search API is based on ElasticSearch, but ES knowledge should not be necessary to use standard search functions.
Search docs: https://flotiq.com/docs/API/search/
Example request with order_by, according to docs:
created
Search all ordered by causes error:
"q": [ "Malformed query" ] }
We should use created.keyword (notice "keyword", that is not mentioned in docs) https://api.flotiq.com/api/v1/search?q=*&order_by=created.keyword&auth_token=__TOKEN__ And it works fine.
created.keyword
Please add info on when should I use .keyword or refer to ES docs
.keyword
The text was updated successfully, but these errors were encountered:
Resolved with #262
Sorry, something went wrong.
No branches or pull requests
Search API is based on ElasticSearch, but ES knowledge should not be necessary to use standard search functions.
Search docs: https://flotiq.com/docs/API/search/
Example request with order_by, according to docs:
created
[error]: https://api.flotiq.com/api/v1/search?q=*&order_by=created&auth_token=__TOKEN__Search all ordered by causes error:
We should use
created.keyword
(notice "keyword", that is not mentioned in docs)https://api.flotiq.com/api/v1/search?q=*&order_by=created.keyword&auth_token=__TOKEN__
And it works fine.
Please add info on when should I use
.keyword
or refer to ES docsThe text was updated successfully, but these errors were encountered: