I want to create a node having properties in dictionary using py2neo.
query = CREATE (movie:Movie {'a': 'b', 'c': 'd'}) RETURN movie
graph_db.cypher.execute(query)
Then it given an error.
So I need to change the properties of my node to {a: 'b', c: 'd'}
.
Is there a way I can do it using py2neo? Or any alternate way?
Thanks