top of page
Search

Neo4j: "Couldn't load the external resource at:" error

  • Writer: Krishnaraj Rajagopal
    Krishnaraj Rajagopal
  • Feb 16, 2018
  • 1 min read

If you get "Couldn't load the external resource at:" error when executing LOAD statement to upload CSV data to Neo4j, check the filename or directory name in the LOAD statement as a typo in the name could trigger the error.

Recent Posts

See All
Neo4j: Get label-relationship count

Run the following cypher query to get the label to relationship count match (n)-[r]-(m) return labels(n),count(r) as rel_count, labels(m)...

 
 
 
Neo4j: Get label count

Run the following cypher query to get the label counts call db.labels() yield label call apoc.cypher.run("match (:`"+label+"`) return...

 
 
 

Comments


©2017 by Krishna's Tech Notes. Proudly created with Wix.com

bottom of page