NodeExists QueryBuilder Predicate
Available since version 2.10.0/3.7.0
Purpose
Provide a QueryBuilder predicate that allows for querying on the existance of nodes. This is great for checking if DAM Assets ahve all renditions.
How to Use
Include this in your QueryBuilder query.
##
nodeExists.or
- When
nodeExists.or = false
(the default), allnodeExists.exists
andnodeExists.notexists
conditions for this predicate areAND'd
together to determine if the result node is included. - When
nodeExists.or = true
(the default), allnodeExists.exists
andnodeExists.notexists
conditions for this predicate areOR'd
together to determine if the result node is included. -
Options: true false - Default: false
- Example:
- When
nodeExists.exists
- Value: node to verify the existence of, relative to the query result node. This relative path must exist for this expression to return true.
nodeExists.notexists
- Value: node to verify the absence of, relative to the query result node. This relative path must NOT exist for this expression to return true.