default lucene indexes used when query by fulltext
I have created a custom oak index for the following query:
path=/content/myproject/en
1_property=sling:resourceType
1_property.value=myproject/components/structure/page
2_property.operation=exists
2_property=excludePage
2_property.value=false
fulltext=%text to search for% group.1_group.type=cq:PageContent
type=cq:PageContent
group.p.and=true
group.1_group.p.or=true
orderby=@dateStory
orderby.sort=desc
the index contains rules for excludePage, resourceType, dateStory.
The index also defines queryPaths and includedPaths, evaluating constraints.
However, and logically after reindexing my index, this query is derived to the lucene box index.
The same query, but without the fulltext:
path=/content/myproject/en
1_property=sling:resourceType
1_property.value=myproject/components/structure/page
2_property.operation=exists
2_property=excludePage
2_property.value=false
group.1_group.type=cq:PageContent
type=cq:PageContent
group.p.and=true
group.1_group.p.or=true
orderby=@dateStory
orderby.sort=desc
does succeed, it is being used by my custom index.
How can I stop this query from being derived to the box indexes? How do I get it to use the custom index by performing a fulltext search?
Thank you very much