In Lucene, a Phrase is a group of words surrounded by double quotes such as \"hello dolly\". I would like to be able to do the CYPHER equivalent of this Lucene fuzzy query:<
Try this one:
START n=node:node_auto_index("name:hella\\ dolly~0.1") RETURN n
It's an old question but this may help others:
START n=node:node_auto_index('name:"hella dolly"~0.1') RETURN n