Hi All,
Currently I have this kind of layout. Inside one parsys we have one column control, inside column control we have one more column control in which I have put a text image component.
When I put the component inside the nested column control it is not able to search it, if I put the same component inside column control which is just inside parsys then it shows up. Is there a way to make the querybuilder search more deeper?
I have seen the documentation for query builder and it talks about p.nodedepth but it also does not seem to work.
https://docs.adobe.com/docs/en/cq/5-6-1/dam/customizing_and_extendingcq5dam/query_builder.html
This is my original query
path=/content
type=cq:Page
fulltext=testText
I have tried adding nodedepth property
path=/content
type=cq:Page
fulltext=testText
p.hits=full
p.nodedepth=5
Thanks!
Shehjad
Solved! Go to Solution.
Views
Replies
Total Likes
Hello,
Above three parameters are used for generic search but p.hits or p.nodedepth are specific to when you perform search based on property. So to work with above query you should be describing property
for example (from above use case) where you can replace fulltext to property specific and do the search
path=/content
type=cq:Page
property=jcr:title
property.value=
testTextp.hits=full
p.nodedepth=5
Thanks,
Pawan
Views
Replies
Total Likes
What is your result set?
Views
Replies
Total Likes
Hello,
Above three parameters are used for generic search but p.hits or p.nodedepth are specific to when you perform search based on property. So to work with above query you should be describing property
for example (from above use case) where you can replace fulltext to property specific and do the search
path=/content
type=cq:Page
property=jcr:title
property.value=
testTextp.hits=full
p.nodedepth=5
Thanks,
Pawan
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies