I created a FullText index named: myFullTextIndex
.
When I want to search for the pattern: Hello World
, the query looks like:
START w=node:myFullTextIndex('title:"Hello World"')
That works pretty well.
However, I don't manage to search for the same string surrounded by wildcards.
I expect a search on this pattern to return a result: *Hello World*
I tried:
START w=node:myFullTextIndex('title:"*Hello World*"')
and
START w=node:myFullTextIndex('title:*"Hello World"*')
but doesn't work (syntax errors occurred).
Any idea?
START w=node:myFullTextIndex('title:(*Hello World*)')
- that worked in the handpicked tests in my database. Please let me know how it goes. - Daniel Krizian