I want to load the data into neo4j using spark. I have installed apache spark and adding neo4j connector using python code.
df.write.format("org.neo4j.spark.DataSource")
.option("url","url" )
.option("authentication.type", "basic").option("authentica...