Hi,
I'm trying to make a request with predicates in which I can look for a property that doesn't contains a value.
I use the Querybuilder debugger and figure out that this predicates :
type=dam:Asset
path=/content
property:jcr:content/metadata/keywords
property.value:keyword:mykeyword
property.operation:like
will end to this XPATH request :
/jcr:root/content//element(*, dam:Asset)
[
jcr:like(jcr:content/metadata/@keywords, 'keyword:mykeyword')
]
This is good but what i want now is build a predicate that will end on this request:
/jcr:root/content//element(*, dam:Asset)
[
not(jcr:like(jcr:content/metadata/@keywords, 'keyword:mykeyword'))
]
And for the moment, a can't figure out a solution because unlike does exist for the predicates and the "not" operation look for asset that doesn't have my value.
Thanks for help !