1

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.

Pimuzzo
  • 103
  • 1
  • 9

3 Answers3

2

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.

Community
  • 1
  • 1
Pimuzzo
  • 103
  • 1
  • 9
1

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

Krutik Jayswal
  • 3,165
  • 1
  • 15
  • 38
  • Thanks for reply, but I don't need full search text, only search in some "dynamic fields" by using wildcards in a field name in queries. – Pimuzzo Jun 12 '15 at 20:01
1

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.

mitpatoliya
  • 2,037
  • 12
  • 23