neo4j-rstats / neo4r

A Modern and Flexible Neo4J Driver
https://neo4j-rstats.github.io/user-guide/
Other
106 stars 30 forks source link

Full index querying #57

Open sbagewadi opened 5 years ago

sbagewadi commented 5 years ago

I am trying to run full-text index search for the example given in neo4j website (#5.1 chapter). However, when i query the index for exact match using neo4r, it returns the results ignoring the exact match.

e.g. CALL db.index.fulltext.queryNodes("titlesAndDescriptions", "\"Full Metal Jacket\"") YIELD node, score RETURN node.title, score

After debugging, the main problem recognised was passing the backslashes in combination with single quotes when creating a cypher string in paste0. Could you provide some example for full-text index querying using neo4r?