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.

ahmedfazal405
Node
since ‎04-13-2020
‎06-01-2022

User Statistics

  • 8 Posts
  • 0 Solutions
  • 0 Kudos given
  • 0 Kudos received

User Activity

Hey guys. I am using the following code to load a csv file and parse the data abnd time columns. CALL apoc.periodic.iterate( 'CALL apoc.load.csv("file:///newfile.csv") yield map as row' , 'MERGE (s:Sender{from_send:row.From}) MERGE (r:Receiver{to_s...
Hey there guys. I'm trying to import data from a csv file with about 300K rows. The query I am using is as follows: CALL apoc.periodic.iterate( 'CALL apoc.load.csv("file:///newfile.csv") Yield map as row return row' , 'MERGE (s:Sender{from_send:row....
Hey guys, I'm relatively new to NEO4J. I'm using desktop to make a graph database for an email dataset. I have written some code and it seems to run correctly but it is not displaying multiple relationships between nodes. **LOAD CSV WITH HEADERS FROM...