I search for a word and i get the results with facet as follows
<lst name="itemtype">
<int name="Internal">108</int>
<int name="Users">73</int>
<int name="Factory">18</int>
<int name="Supply Chain Intermediaries">6</int>
<int name="Company">1</int>
<int name="Monitor/Auditor firm">0</int>
</lst>
then i wrote the condition like fq=itemtype:Factory i get the results. But i am not getting the results for fq=itemtype:Supply Chain Intermediaries . I am thinking the problem with the spaces in the condition (Supply Chain Intermediaries), I tried with urlencode (space replace with %20) also. But no use. Can you guys please help me to solve this.
Update:
For single value it is working fine. I build the query like this
http:localhost:8080/solr/select/?q=adidas&version=2.2&indent=on&facet=on&start=0&rows=20&fq={!raw f=itemtype}Supply Chain Intermediaries
But i need to write for multiple values. The original Query with out raw is as follows
http://localhost/solr/select/?q=adidas&version=2.2&indent=on&facet=on&start=0&rows=20&fq=(itemtype:Company itemtype:Supply Chain Intermediaries)
Can you guys please help me to solve this.