Platform migration updates: Starting October 25th, 2024, all support issues must be submitted through Hyland Community. The Nuxeo Jira site will enter indefinite read-only mode at 5 p.m. EDT. Cloud deployment services will be temporarily offline, with normal operations resuming Monday, October 28. Read the Hyland Connect blog post for more details.
You can now do a query on per-instance facets using the ecm:mixinType pseudo-property:
... WHERE ecm:mixinType IN ('MyMixin', 'OtherMixin') ...
... WHERE ecm:mixinType NOT IN ('MyMixin', 'OtherMixin') ...
... WHERE ecm:mixinType = 'MyMixin' ...
... WHERE ecm:mixinType <> 'MyMixin' ...
Note that per-type facets are also matched by these clauses.
For efficiency reasons, the facets "Folderish" and "HiddenInNavigation" are special and never matched per-instance (only per-type).
You can now do a query on per-instance facets using the ecm:mixinType pseudo-property:
... WHERE ecm:mixinType IN ('MyMixin', 'OtherMixin') ...
... WHERE ecm:mixinType NOT IN ('MyMixin', 'OtherMixin') ...
... WHERE ecm:mixinType = 'MyMixin' ...
... WHERE ecm:mixinType <> 'MyMixin' ...
Note that per-type facets are also matched by these clauses.
For efficiency reasons, the facets "Folderish" and "HiddenInNavigation" are special and never matched per-instance (only per-type).
Description
Allow queries that filter on the presence or absence of a particular facet.