I am using py2neo to load JSON data into Neo4j as chyper statements.
My problem is that sometimes there are signs as “ ‘ \
etc in the strings I want to import as properties to Nodes:
MERGE (p:Node {name:’This sign ‘ gives error’})
If I change to:
MERGE (p:Node {name:” This sign ‘ gives error”})
It will work for the statement over but it will fail when a “
is in an input string.
Is there a way to say that all (or almost all) special character is allowed inside the string? Sorry if this is a stupid question :)