cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

b_buchhold
Node Link
since ‎05-13-2020
‎06-01-2022

User Statistics

  • 4 Posts
  • 1 Solutions
  • 1 Kudos given
  • 0 Kudos received

User Activity

Assume a simplistic graph created by: merge (n:Node {name: "x"}) merge (m:Node {name: "y"}) merge (n)-[:R]->(m) merge (n)-[:R {k: "v"}]->(m) return n, m Naturally, I can delete both edges via: match (n:Node {name: "x"}) match (m:Node {name: "y"}) ma...
Assume I have a 4.0 cluster with several "graphs" (cypher: "DATABASE"s). I want to create a copy of one for them for experiments that will make modifications to the graph. Initial Google searches have turned up neo4-admin copy --from-database=... to-...
Kudos given to