neo4j - How do I create a relation with neo4jdb (python) -
unfortunately sparce documentation https://github.com/jakewins/neo4jdb-python misses important point graph db - how create relation between 2 nodes?
thanks, eric
the plugin using cypher, query language of neo4j.
you can here complete documentation of cypher:
http://docs.neo4j.org/chunked/milestone/cypher-query-lang.html
the following query create relation example:
match (a:person),(b:person) a.name = 'node a' , b.name = 'node b' create (a)-[r:reltype]->(b) return r
Comments
Post a Comment