Convert graph database relationships into node properties
I have a neo4j database that stores forum posts. Replies to specific posts are encoded using a replyto
relationship. I am trying to retrieve all the information from the database, convert the relationships into node properties, then output all the nodes with the new replyto
property in JSON format. I think the replyto
property in the JSON object should be an array of all the post IDs that are replies to the given post, but please suggest something better if you think of it.
What cypher query should I use to retrieve this data and how should I convert the relationships into node properties using javascript?
Topic json javascript neo4j data-cleaning
Category Data Science