1. I have noticed bulk editor search feature generates JCR-SQL2 query to
get the result and all these queries are getting generated with CONTAINS
Statement only. 2. CONTAINS statement works perfectly with property like
jcr:title, jcr:description - SELECT * FROM [nt:unstructured] AS
nodeWHERE ISDESCENDANTNODE(node, "/search/in/path")AND
CONTAINS([propertyName], "someString")3. But CONTAINS statement doesn't
work with Date property , sling:resourceType as it is pointing to path.
4. Though cq:lastR...