This is not related to the fact that you are using a free version of Memgraph Cloud.
Memgraph Cloud doesn’t support importing data from CSV files directly. Both the LOAD CSV
clause and the CSV Import Tool require access to the local file system, and this is not possible when it comes to Memgraph Cloud.
There are two options you could try out:
Import the data programmatically by connecting to the instance via driver. This way, you could use each entry in your CSV file to execute a Cypher CREATE
query.
Using the .cypherl
bulk import 2 in Memgraph Lab. You can transform your CSV entries into Cypher CREATE
queries and save them to a file with the extension .cypherl
. Such a file can be imported by going to Memgraph Lab → Datasets tab → Select or drag and drop a file.
You can look up documentation on the Memgraph website.