Hi,
the following query:
final Node scope = JcrUtils.getNodeIfExists("/content/taxonomies/news", requestContext.getSession());
final HstQuery hstQuery = HstQueryBuilder.create(scope)
.ofTypes("hippotaxonomy:category")
.build(queryManager);
doesn’t extract any result even if the scope node exists and there are subnodes of type hippotaxonomy:cateogory in the JCR.
The following query in repository instead is correctly working
/jcr:root/content/taxonomies/news//element(*,hippotaxonomy:category)
Do you know why it seems that the hippotaxonomy:category nodes are filtered out?
Thanks,
Flavio