Hi,
I am facing problem in combining more than two queries using Lucene.
Actually I have to search for content in a particular folder. e. g. HOME/WORKING/ENGLISH.
This I am able to achieve using following query:
@cm\:name:"mobile" AND PATH:"/app:company_home/cm:HOME/cm:WORKING/cm:ENGLISH/*"
But additionally, I have to find articles which are tagged with a particular tag and are part of the same folder as above. So I tried something like this.
PATH:"/cm:taggable/cm:MOBILEPHONE/member" OR @cm\:name:"mobile" AND PATH:"/app:company_home/cm:HOME/cm:WORKING/cm:ENGLISH/*"
This is throwing an AxisFault exception.
Any help in resolving this would be highly appreciated.