QueryBuilder - TagID vs property operators/predicates and sub tags evaluation | Community
Skip to main content
New Participant
January 12, 2023
Solved

QueryBuilder - TagID vs property operators/predicates and sub tags evaluation

  • January 12, 2023
  • 2 replies
  • 1189 views

Hi,

 

I am on 6.5.12 version of AEM, noticed that using tagid as A, results in unclosed resource resolver and using B works fine . But using B means i will have to add the like operation to it.  Tried this using Querybuilder OOTB

Question-
1. Is there an alternate way to achieve subtags retrieval if parent tag is chosen?
2. I could think of "like" operator but Is "like" operation ok for performance reasons?- option C
3. Does anyone else notice the unclosed resolver warnings using "tagid"?


A. 

path=/content
group.1_tagid.property=cq:tags
group.1_tagid=properties:style/color
group.2_tagid.property=cq:tags
group.2_tagid=properties:style/monochrome
orderby=path
group.p.or=false
p.offset=0
p.limit=-1


B.

path=/content
group.1_property=jcr:content/@cq:tags
group.1_property.value=properties:style/color
group.2_property=jcr:content/@cq:tags
group.2_property.value=properties:style/monochrome
orderby=path
group.p.or=true
p.offset=0
p.limit=-1


C.
path=/content
group.1_property=jcr:content/@cq:tags
group.1_property.value=properties:style/color%

group.1_property.operation=like
group.2_property=jcr:content/@cq:tags
group.2_property.operation=like
group.2_property.value=properties:style/monochrome%
orderby=path
group.p.or=true
p.offset=0
p.limit=-1

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by NitroHazeDev

Anyone facing the issue ,received confirmation from adobe ..  this is a bug and that has been existing with tagid and the KB still holds good since the issue exists since I guess 2017 

ignoring the info messages is the suggestion. 

 

https://helpx.adobe.com/au/experience-manager/kb/Unclosed-ResourceResolver-warnng-at-com-day-cq-search-impl-builder-QueryBuilderImpl.html

2 replies

New Participant
January 18, 2023

Anyone knows about this ? 

NitroHazeDevAuthorAccepted solution
New Participant
January 19, 2023

Anyone facing the issue ,received confirmation from adobe ..  this is a bug and that has been existing with tagid and the KB still holds good since the issue exists since I guess 2017 

ignoring the info messages is the suggestion. 

 

https://helpx.adobe.com/au/experience-manager/kb/Unclosed-ResourceResolver-warnng-at-com-day-cq-search-impl-builder-QueryBuilderImpl.html

New Participant
January 14, 2023

Anyone please ?