I am new to Solr.
I am trying to search for records containing single round bracket either '(' or ')'.
The query for searching the record is as follows:
q=( ( name: (*\(abc*) ) )
The above query breaks the solr search.
I am escaping the ( ) character by using the following regex:
value = value.replace(/([()])/g, '\\$1');
Can someone please help to troubleshoot this issue ?