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:
- path=/etc/tags: Specifies the starting path for the search. Adjust it based on your tag structure.
- type=cq:Tag: Specifies that you are searching for tags.
- 1_property=jcr:content/jcr:title: Filters based on the jcr:title property of the tag.
- 1_property.value=Manager: Specifies the value you are searching for (replace "Manager" with your desired title).
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.