[[rest-api-delete-relationship]]
=== Delete relationship ===



.Starting Graph
["dot", "Starting-Graph-Delete-relationship1.svg", "neoviz"]
----
  N58 [
    label = "{Node\[58\]|name = \'Juliet\'\l}"
  ]
  N59 [
    label = "{Node\[59\]|name = \'Romeo\'\l}"
  ]
  N59 -> N58 [
    color = "#2e3436"
    fontcolor = "#2e3436"
    label = "LOVES\ncost = \'high\'\l"
  ]
----


.Final Graph
["dot", "Final-Graph-Delete-relationship.svg", "neoviz"]
----
  N58 [
    label = "{Node\[58\]|name = \'Juliet\'\l}"
  ]
  N59 [
    label = "{Node\[59\]|name = \'Romeo\'\l}"
  ]
----

_Example request_

* *+DELETE+*  +http://localhost:7474/db/data/relationship/24+
* *+Accept:+* +application/json+

_Example response_

* *+204:+* +No Content+
[source,javascript]
----

----


