I was playing around with Py2neo
API for Neo4j , can somebody tell me how to pull the data from the graph
by using pull()
method. Can someone give me an example.
I did the following:
Node1=Node("Person",Name="Kartieya");
Graph().create(Node1);
Graph().pull(Node1);
I am recieving the status as 200 , i.e. its working but how i am going to get the Node1.Name?