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
Algolia uses parameter clickAnalytics to return queryID in response.
clickAnalytics
queryID
Description of clickAnalytics: https://www.algolia.com/doc/api-reference/api-parameters/clickAnalytics/ Description of queryID in response: https://www.algolia.com/doc/api-reference/api-methods/search/#method-response-queryid
Unfortunately current version of SearchResult case class has no queryID field, thus it is ignored during response extraction.
Perform search request with clickAnalytics enabled:
Query(query = Some("text"), customParameters = Some(Map("clickAnalytics" -> "true")))
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
Algolia uses parameter
clickAnalytics
to returnqueryID
in response.Description of
clickAnalytics
: https://www.algolia.com/doc/api-reference/api-parameters/clickAnalytics/Description of
queryID
in response: https://www.algolia.com/doc/api-reference/api-methods/search/#method-response-queryidUnfortunately current version of SearchResult case class has no
queryID
field, thus it is ignored during response extraction.Steps To Reproduce
Perform search request with
clickAnalytics
enabled:The text was updated successfully, but these errors were encountered: