-
Notifications
You must be signed in to change notification settings - Fork 50
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
Searches fail with "special" chars #587
Searches fail with "special" chars #587
Comments
Actually, do we really want to escape user queries? Currently the user (patron or librarian) is given the ability to write advanced queries, such as |
Agree, we don't want to parse the query for sure! The task would be to investigate if it is easy to encode special chars only given the complete search query string. I think such search should work... |
I see, that's a very valid point. It would work if the user escapes the query string themselves, eg. |
From the official documentation:
I believe that's precisely what we need here. Edit: Although very convenient the simple query DSL takes away some core features that we are currently using and which would not be easily replaceable, such as |
Try to do a search with "/". Invenio should escape the
query string
https://stackoverflow.com/questions/40222694/escaping-special-characters-in-elasticsearch
The text was updated successfully, but these errors were encountered: