Hi,
I wanted to know a way to pull the data from database using py2neo API
(without executing cypher).
I can create a node simply using,
a= Node(Person{name:"abcd"})
In the same way, I want to retrieve a node from Graph Database.
Is anything exists to pull like this. a=getNode(Perso
I am using py2neo to execute my cypher queries. But, now I wanted the same
to be done programatically in a Object oriented fashion. Like creating
nodes, creating relationships, retrieving the nodes, updating the property
values, etc,. If it is possible please share a sample program to do so.
--