Close

Query languages

In addition to AFTS the Lucene query language is supported. It is provided by the IR framework and the query API is built on top of the Lucene standard query parser. For more details see Apache Lucene - Query Parser Syntax.

The Search Enterprise documentation provides Apache Lucene - Query Parser Syntax information specific to Alfresco.

The search string syntax depends on the given query language and can differ significantly between AFTS and Lucene. However, there are some shared aspects that provide the same behavior in both languages, for more see Field queries.

Lucene Query Language

Properties

Properties are attributes defined in an Alfresco content model. They are identified by qualified names, meaning they are composed of:

  • a namespace
  • a local name

This avoids conflicts between local names used in multiple models, for example finance:name and cm:name.

A property can be declared in queries using three notations:

  • Unqualified name, for example title. In this case it will be associated to the default namespace. The property is therefore assumed to exist and to be valid in the default content model.
@title:OOP @title:(Object Oriented Programming)
  • Prefixed name, for example cm:title. The prefix is the short form of a given namespace. It must be uniquely associated to a namespace and to a content model.
@cm:title:OOP @cm:title:(Object Oriented Programming)
  • Fully qualified name. In this case the property name uses the full namespace and the local name.
@{http://www.alfresco.org/model/content/1.0}title:OOP @{http://www.alfresco.org/model/content/1.0}title:(Object Oriented Programming)

When prefixes and fully qualified names are used, the property has to be prefixed with the @ symbol and this is one of the main differences between AFTS and Lucene. Special characters (i.e. characters that have a special meaning in lucene) need to be escaped using the backslash.

Edit this page

Suggest an edit on GitHub
By clicking "Accept Cookies", you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and assist in our marketing efforts. View Cookie Policy.