I am writing a SOLR query for faceted searching, and my fields can possibly have quotes or other bad characters in them, so I am using the raw operator to construct the query. However, if the user selects multiple facet values, I can't see how to use an OR in the query.
For example, the following returns results for a Manufacturer of Nike:
{!raw f=Manufacturer}Nike
The following returns results only for a Manufacturer of Adidas:
{!raw f=Manufacturer}Nike OR {!raw f=Manufacturer}Adidas
And the following returns no results:
{!raw f=Manufacturer}Nike OR Adidas
Is there a way to do this?