0

How do I change an existing edge type on Neo4j. I am already able to change my existing node type with no issues.

Gavy
  • 143
  • 2
  • 11
  • 4
    Possible duplicate of [neo4j cypher: how to change the type of a relationship](https://stackoverflow.com/questions/22670369/neo4j-cypher-how-to-change-the-type-of-a-relationship) – Tom Geudens Sep 30 '17 at 06:00
  • Duplicate, but make sure you see the comment on the linked question itself on using `apoc.refactor.setType()` – InverseFalcon Sep 30 '17 at 16:55

1 Answers1

0

Thanks to InverseFalcon for the answer. :)

apoc.refactor.setType() will change the edge type label. Tried and tested.

Gavy
  • 143
  • 2
  • 11