> Hi
> I want to add a filter to my query which takes documents
> whose "city"
> field has either Bangalore of cochin or Bombay. how do i do
> this?
> 
> fq=city:bangalore&fq=city:bombay& fq=city:cochin
> will take the
> intersection. I need the union.

fq=city:(bangalore OR cochin OR bombay)

same syntax as q parameter.


      

Reply via email to