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
The search view should accept a tags parameter, indicating that the query should be filtered on the given tags, which refer to a Tag
tags
Tag
The backend should use this to construct and IDs query, which is a dict like the following:
{ "ids": ["64738523", "84838923", ...] }
This should be added as a filter ot the query JSON sent to elasticsearch.
The text was updated successfully, but these errors were encountered:
As per the documentation, should be:
{ "ids" : { "values" : ["64738523", "84838923", ...] } }
Sorry, something went wrong.
lukavdplas
Successfully merging a pull request may close this issue.
The search view should accept a
tags
parameter, indicating that the query should be filtered on the given tags, which refer to aTag
The backend should use this to construct and IDs query, which is a dict like the following:
This should be added as a filter ot the query JSON sent to elasticsearch.
The text was updated successfully, but these errors were encountered: