I'm running the Neo4J desktop app (V1.2.1) for macOS (v10.14.5). I downloaded the Northwinds database to follow along the "Import Data into Neo4j" tutorial in the online developer guides.
I created a local database
Started it in the desktop app
I launched the Neo4j browser (V3.2.20)
Copied the following commands from the tutorial
USING PERIODIC COMMIT
LOAD CSV WITH HEADERS FROM "file:customers.csv" AS row
CREATE (:Customer {companyName: row.CompanyName, customerID: row.CustomerID, fax: row.Fax, phone: row.Phone});
The app returns the following error message "Neo.DatabaseError.General.UnknownError: URI is not hierarchical"
Can you help me decipher this message so I can understand what I need to do to have the app properly upload the CSV file?
File URLs will be resolved relative to the dbms.directories.import directory. For example, a file URL will typically look like file:///myfile.csv or file:///myproject/myfile.csv .