Skip to content

Commit

Permalink
small fix in frus conversion file
Browse files Browse the repository at this point in the history
  • Loading branch information
gozsoy committed Jun 3, 2023
1 parent 38ae295 commit c471e77
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/frus_conversion.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,8 @@
match (c:City {name:row.city})
merge (d)-[:FROM]->(c)
with row, d
match (s:Source {name:row.source})
where row.source is not null
merge (s:Source {name:row.source})
merge (d)-[:STORED]->(s)
} IN TRANSACTIONS OF 100000 ROWS;
""")
Expand Down

0 comments on commit c471e77

Please sign in to comment.