neo4j - How to analyze the data model and extract the whole database/table into a csv file from the graph.db(noe4j) folder that i have? -


how analyze data model , extract whole database/table csv file graph.db(noe4j) folder have ?

note: don't want single cypher query. want whole database/table of graph.db folder.

  1. the neo4j browser has export menu in group of menus on top right of every result pane. can export results number of different formats, including csv.

  2. you can use neo4j-shell-tools, can export csv.

both of these techniques require neo4j server running db.

also, require cypher query returns data.

for example, query should return data (all relationships, , nodes either have or not have outgoing relationships):

match (n) optional match (n)-[r]->() return *; 

Comments

Popular posts from this blog

javascript - jQuery: Add class depending on URL in the best way -

caching - How to check if a url path exists in the service worker cache -

Redirect to a HTTPS version using .htaccess -