Hi,
i have a simple dataframe that i'm tying to load as nodes and relations to neo4j via spark and i doesnt work.
i used the query option to do it
my query is
"""MERGE (s:Person {s.phone: event.phone_number})
MERGE (t:Location {t.loc: event.city})
MERGE (s)-[rel:visit_type {rel.type: event.type}]->(t)
"""
i keep getting the error "please provide a valid WRITE query"
phone_number/city/type are three columns in my dataframe
can anybody help me with it?
thanks