I'm using Neo4j 2 REST API and I have the ability to add plugins.
I have an entity in my database with the label 'Entity' and name 'United Kingdom'.
How do I execute a fuzzy search to find this entity.
I would like to be able to find it using queries like
- United
- Kingdom
- Uniter Kingdom
- United Kinjdom
So the .*<query>.*
won't do it.
I notice there was support for something like this in previous versions.
start n = node:index("name : 'United Kinjom'~0.2") return n
But this doesn't appear to work anymore.