Solved
How to exclude a specific node path from fulltext search ?
I have created oak index. By creating it following query working fine in query builder
path=/content/data
type=nt:unstructured
fulltext=test
But it is getting text from all nodes like /content/data/stores, /content/data/offers, /content/data/promotions. I want to exclude this node /content/data/stores. How can I achieve this ? I tried following queries but it didn't work as expected.
path=/content/data
type=nt:unstructured
fulltext=test
1_path=/content/data/stores
1_path.operation=exclude
and
path=/content/data
type=nt:unstructured
fulltext=test
group.p.or=true
group.1_path=-/content/data/stores
Thanks in advance.