Specific properties
In addition to the generic properties, it is also possible to query for specific named properties.
Root taxonomy item
To query all entities that represent a root taxonomy item, use the IsRootTaxonomyItem property:
To negate the IsRootTaxonomyItem property, use an exclamation mark:
Definition ID
To query for all entities that have a certain definition ID, use the Definition.id property:
This property only supports == and != operators.
Definition name
To query for all entities that have a certain definition name, use the Definition.Name property:
This property only supports == and != operators.
We recommend to limit queries by including one of the definition restrictions. It improves performance and avoids unexpected results (e.g. a request returns files but you only want assets).
Locked by
To query for all assets locked by a certain user ID, use the LockedBy property:
This property only supports == and != operators.
Locked
To query for all locked assets, use the Locked property:
This property does not support any operators, but can be negated.
Created by
To query for all assets created by a certain user ID, use the CreatedBy property:
This property only supports == and != operators.
Modified by
To query for all assets last modified by a certain user ID, use the ModifiedBy property:
This property only supports == and != operators.