how do we write query in JCR/Jackrabbit to select data using:
"where title like '%News%".
here is my structure in repository /rootNode and under root node I have many child nodes and under those child nodes i have data in which I want to search if a string matches the name or is similar to that name. please pardon me if i am not able to explain. I m new to JCR/jackrabbit. I know how to do in database example
(SELECT * FROM Customers
WHERE City LIKE 'anystring%';)
i want to accomplish similar thing in JCR. Thanks