find node with wildcard in the key field

583 Views Asked by At

For example I am trying to search something like:

@cm\:*ame:"pippo"

Is it possible?

We use alfresco 4.2 community edition, lucene locally and solr (1.4) in remote.

3

There are 3 best solutions below

0
On BEST ANSWER

Yes Wild card search is supported in Alfresco. They query which you are using will look something like this.

@cm\:name:pippo*

You cannot use wild card on the property name because it should match exactly with model.

1
On

Yes wild card is supported in both terms, phrases, and exact phrases.For more information please refer below link.Specially Wildcard Section.

https://wiki.alfresco.com/wiki/Full_Text_Search_Query_Syntax#Wildcards

0
On

As mentioned in:

here and here

It is not possible in a simple query, and the solution with dynamicField/copyField is not applicable in my case.