property index at nested level does not work
I am facing below issue about property indexing.
I have two property indexes (cqModel, cqTags )defined at "/content/dam/personal-site/oak:index".
Interesting thing is if I move these property indexes to '/oak:index" default out of the box location, property indexes picked by query. But not when indexes defined at "/content/dam/personal-site/oak:index".
content that needs indexing will be at /content/dam/personal-site/faqs folder.

sample queries to try:
select [jcr:path], [jcr:score], * from [dam:AssetContent] as a where [data/cq:model] = '/conf/pi/CF-Models/settings/dam/cfm/models/faq-model' and isdescendantnode(a, '/content/dam/pi/test-sreeni/faq2')
select [jcr:path], [jcr:score], * from [dam:AssetContent] as a where [data/master/cq:tags] in('we-retail:gender', 'we-retail:activity') and isdescendantnode(a, '/content/dam/pi/test-sreeni/faq2')
select [jcr:path], [jcr:score], * from [dam:AssetContent] as a
where [data/cq:model] = '/conf/pi/CF-Models/settings/dam/cfm/models/faq-model'
and [data/master/cq:tags] in('we-retail:gender', 'we-retail:activity')
and isdescendantnode(a, '/content/dam/pi/test-sreeni/faq2')
Any ideas , what I am missing.

