Neo4j 2 Cypher fuzzy search -
i'm using neo4j 2 rest api , have ability add plugins.
i have entity in database label 'entity' , name 'united kingdom'.
how execute fuzzy search find entity.
i able find using queries
- united
- kingdom
- uniter kingdom
- united kinjdom
so .*<query>.*
won't it.
i notice there support in previous versions.
start n = node:index("name : 'united kinjom'~0.2") return n
but doesn't appear work anymore.
it still works. adding fulltext search automatic new schema indexes on roadmap. until can still use "legacy" indexes.
http://jexp.de/blog/2014/03/full-text-indexing-fts-in-neo4j-2-0/
Comments
Post a Comment