I'm learning JQOM. Just one question, in XPath, I used to do queries like :
//*[... and path/to/subnode/@value='somevalue' and ...]
in JQOM, I can't use this :
qom.comparison
(
qom.propertyValue("mainselector", "path/to/subnode/@value"),
qom.JCR_OPERATOR_EQUAL_TO,
qom.literal(value.createValue("somevalue"))
)
it gives :
Exception in thread "main" javax.jcr.query.InvalidQueryException: '/' not
allowed in name
Is it possible to do something like this? or should I need to do a join ?
Frank
