Platform update: The Nuxeo Jira site is anticipated to be decommissioned Saturday, February 1, 2025. After this date, users will no longer be able to access or refer to Jira.Nuxeo.com. 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.