I have a variable name="Rahul" and, I want to pass this variable to cypher query in Py2neo in the following manner:
line=session.execute("MATCH (person)WHERE person.name=name RETURN person")
but i am getting an error -
"py2neo.cypher.InvalidSyntax: name not defined (line 1, column 33)"
how to pass the variable in py2neo