[Neo4j] Pull Nodes from Data Using Py2neo API filtering with properrties (Without executing the cypher queries)

2016-05-31 Thread Ashwanth D
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

[Neo4j] Object orient programming fashion through py2neo

2016-05-15 Thread Ashwanth D
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. --