Query language in Content Studio

Enonic version: 6.7.3
OS: Linux

I’m trying to use the query language to find specific content in content studio, but I can’t get it working.
Is the query language supposed to work in the content studio search field?

ref: http://xp.readthedocs.io/en/stable/reference/query-language.html

Nope, its actually a fulltext-function search, so you can use the search-string operators in the fulltext-function

http://xp.readthedocs.io/en/stable/developer/search/query-functions/fulltext.html

Please give me an example of a query working in content stuido.
For instance these does not work:

'data.*', '4'
'data.*', '4', 'OR'
'data.*', '4', 'and'

The search-string operators work;

`
Search-string syntax
The search-string supports a set of operator:

  • signifies AND operation.
    | signifies OR operation.
  • negates a single token.
  • at the end of a term signifies a prefix query.( and ) signify precedence.
    ~N after a word signifies edit distance (fuzziness) with a number representing Levenshtein distance.
    ~N after a phrase signifies slop amount.
    `
    There is no possibility to set the field, this is preset in the search-expression. The search-expression itself is a fulltext OR ngram on _allFields with boosting of displayName(5) and name(3)
1 Like

Then I’ll put my hopes into: