I need to query a database of products, the query can contains forward slash like "30/20", but it always splits the query in two parts as _text: 30 and _text: 20.
I tried to escape the forward slash with a back slash like this "30/20" or to use encodeURI as "30%2F20" but it does not work either.
Shall I encode/replace the forward slash in the database?
I tried with quotes following (Solr Query not parsing forward slash) like "5/12" in the query field, it's not working if I have "12.5/12" in the database.
Anyone had the issue? Thanks in advance!