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



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


.Final Graph
["dot", "Final-Graph-Delete-relationship.svg", "neoviz"]
----
  N33 [
    label = "{Node\[33\]|name = \'Juliet\'\l}"
  ]
  N34 [
    label = "{Node\[34\]|name = \'Romeo\'\l}"
  ]
----

_Example request_

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

_Example response_

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

----


