lucene query issue
- by Sunil
I am using Lucene with Alfresco. Here is my query:
( TYPE:"{com.company.customised.content.model}test" && (@\{com.company.customised.content.model\}testNo:111 && (@\{com.company.customised.content.model\}skill:or))
I have to search documents which are having property skill of value "or". The above query is not giving any results (I am getting failed to parse query).
If I use the query up until testNo (ignoring skill), I am getting proper results:
( TYPE:"{com.company.customised.content.model}test" && (@\{com.company.customised.content.model\}testNo:111))
Can you please help me?
Thanks