I'm having a hard time constructing the URL for a query that has more than one multifacet. I'm following the sample here:
http://www.craftyfella.com/2010/01/faceting-and-multifaceting-syntax-in.html
For instance, take a look at the eBay screendump, how would the URL look like if you select 'Sony' and 'LG' in the 'Brand' section and then select 'LCD' in the 'Type' section?
Assume BRAND and TYPE are defined in schema.xml.
This URL would work if you select 'Sony' and 'LG' in the 'Brand' section:
...&facet=on&facet.field={!ex=BRAND}BRAND&fq={!tag=BRAND}BRAND:Sony%20OR%20LG
But what if you need to have selections from both 'Brand' and 'Type'? I tried this but it does not give me what I want:
...&facet=on&facet.field={!ex=BRAND}BRAND&fq={!tag=BRAND}BRAND:Sony%20OR%20LG&facet.field={!ex=TYPE}TYPE&fq={!tag=TYPE}TYPE:LCD
Any help is appreciated.