-
Type: Bug
-
Status: Open
-
Priority: Minor
-
Resolution: Unresolved
-
Affects Version/s: 5.9.5
-
Fix Version/s: QualifiedToSchedule
-
Component/s: Elasticsearch
-
Epic Link:
-
Tags:
Some schema are defined without prefix (nuxeo-core/src/main/resources/OSGI-INF/CoreExtensions.xml) this is the case for file, notes, uuid, ...
Such field have a canonical name without prefix and can be queried like this:
SELECT * FROM Documents WHERE content/name='foo'
Or using the schema name as a prefix:
SELECT * FROM Documents WHERE file:content/name='foo'
The canonical name is not supported by Elasticsearch NXQL.