cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

naikum
Node
since ‎08-29-2020
‎06-01-2022

User Statistics

  • 4 Posts
  • 0 Solutions
  • 0 Kudos given
  • 0 Kudos received

User Activity

Hi All, I am connecting to Neo4j Database in Python script like below: from py2neo import Graph graph = Graph(uri,auth=(user,password)) graph.run() or graph.evaluate() running for CREATE/MERGE statements. There is no close() method with Graph(). Gra...
Is it mandatory to use a RETURN clause in a LOAD CSV Cypher query while executing with graph.run() Is there any alternative function similar to graph.run() without using the RETURN clause and didn't find in py2neo tutorial? Thanks!
Hi, I want to create a node for each row in CSV file and to create relationships for sub-items. Like CREATE (p1:Person{pid:1,name:"P1"}) CREATE (p1a:Person{pid:1a,name:"P1a"}) CREATE (p1b:Person{pid:1b,name:"P1b"}) CREATE (p2:Person{pid:2,name:"P2"})...