Hi, may I know if it is possible if we can search for tags with only giving its title value?
For example, I want to search the tag with title value of "Manager" then I will get its path thru the result of querybuilder.
Thank you!
Solved! Go to Solution.
Views
Replies
Total Likes
This is possible, please check below query:
path=/content/cq:tags
type=cq:Tag
1_property=jcr:title
1_property.value=Manager
This is possible, please check below query:
path=/content/cq:tags
type=cq:Tag
1_property=jcr:title
1_property.value=Manager
Hi @AEMStarterNewbie ,
Yes I agree with @lukasz-m and has provides good information about the same,
In Addition to his context, I would like to add more detail so that it can become easier to you to understand. For querying tags based on their title value using AEM Query Builder, you can structure the query like this:
path=/etc/tags
type=cq:Tag
1_property=jcr:content/jcr:title
1_property.value=Manager
Here's the breakdown of this query:
This query will return the paths of tags where the title matches "Manager." Make sure to test and adapt it according to your AEM instance's specific tag structure.
Views
Likes
Replies