Hello!
I have used tags as part of my index so that I can query specific to index
jcr:mixinTypes="[rep:AccessControllable]"
jcr:primaryType="oak:QueryIndexDefinition"
async="[async,nrt]"
compatVersion="{Long}2"
evaluatePathRestrictions="{Boolean}true"
excludedPaths="[/var,/etc/replication,/etc/workflow/instances,/jcr:system]"
includedPaths="[/content/data]"
queryPaths="[/content/data]"
reindex="{Boolean}false"
reindexCount="{Long}1"
seed="{Long}-4788584413483415353"
type="lucene"
tags="[customSearch]">
Now XPath query is working all good
/jcr:root/content/data/element(*, cq:Page)[(jcr:contains(., 'venue'))] option (index tag customSearch)
How to use the same option using Query Builder ?
fulltext=venue
type=cq:Page
path=/content/data
p.limit=10