Hello, I'm new to Neo4j and trying to make a simple relationship graph
from | to
a | b
a | c
b | d
b | e
In this csv file, what I'm trying to make is a->b, a->c, b->d, b-> e relationship
i tried
"""
LOAD CSV WITH HEADERS FROM "file:///lg4neo.csv" AS...