top of page
Search

Neo4j: Exporting DB data as Cypher Queries

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

I found this great article on how to export Neo4j DB data as Cypher queries.

https://neo4j.com/developer/kb/export-sub-graph-to-cypher-and-import/

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