当我使用github的链接时,Neo4j LOAD CSV无法正常工作

时间:2017-06-22 09:21:16

标签: neo4j load-csv

我有这段代码从另一个网站加载csv。

LOAD CSV FROM 'https://www.quackit.com/neo4j/tutorial/genres.csv' AS line
CREATE (:Genre { GenreId: line[0], Name: line[1]})

enter image description here

但是当我将相同的csv上传到我的github帐户并尝试时,它会给我一个错误。

LOAD CSV FROM 'https://www.quackit.com/neo4j/tutorial/genres.csv' AS line
CREATE (:Genre { GenreId: line[0], Name: line[1]})[![enter image description here][2]][2]

enter image description here 我只更改了链接,没有别的。我该如何解决这个问题?

1 个答案:

答案 0 :(得分:1)

您需要使用该文件的RAW版本。

在你的github repo上,点击你的genres.csv文件,然后点击RAW

enter image description here

然后复制url并在LOAD CSV命令中使用它:

https://raw.githubusercontent.com/JP-Reddy/Recommendation-Engine/master/genres.csv