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.

marcelix161
Node Clone
since ‎01-27-2022
‎06-01-2022

User Statistics

  • 31 Posts
  • 0 Solutions
  • 15 Kudos given
  • 0 Kudos received

User Activity

I need to delete all indexes & constraints in my Neo4j database. Until today I was successfully using the following procedure: //delete all indexes & constraints CALL apoc.schema.assert({},{},true) YIELD label, key RETURN * However, as of today it r...
Assuming that I have a list of relationships equally spaced from the centre of the graph (imagine the sun drawing), how can I call a procedure on all matched relationships at once? I tried the following, but to no avail: match p=(g:CenterNode {centre...
Is it possible to merge edges in Neo4j in such a way that the values of the properties add up?
Today GDS refused to work. I'm working on Neo4j Desktop 1.4.14 Enterprise Edition, and if I try to install the GDS library for a new project, there is no compatible version. For all old projects GDS works fine. Any suggestion on how to fix that issue...
Is there any method to set a property to relationships between those two nodes? (I need to invert those edges). The nodes in orange boxes have distinctive properties. (The path can be of a different length, this is just an example).