Hi, we came up with an undocumented part of the GQL search language:
How are OR statements grouped with the rest? The problem is that there is no grouping concept in GQL, and it is not documented [1]. Take this GQL statement for example: type:asset path:/content OR property:something a) Does it mean this (as pseudo query): (type = asset AND path = /content) OR property = something b) or this: type = asset AND (path = /content OR property = something) [1] http://jackrabbit.apache.org/api/2.4/org/apache/jackrabbit/commons/query/GQL.html Cheers, Alex
