I have my CSV data stored on a server that can be accessed via the internet. There is no authorization needed for access to that file. At the moment, I use scp
and some crone jobs to copy that file to my Memgrpah server. Then I import data using LOAD CSV
.
Is there a way to do something like LOAD CSV FROM "https://my-server.com/files/state.csv" NO HEADER AS row
?