[[rest-api-remove-property-from-a-relationship]]
=== Remove property from a relationship ===

See the example request below.


.Starting Graph
["dot", "Starting-Graph-Remove-property-from-a-relationship1.svg", "neoviz"]
----
  N48 [
    label = "{Node\[48\]|name = \'Juliet\'\l}"
  ]
  N49 [
    label = "{Node\[49\]|name = \'Romeo\'\l}"
  ]
  N49 -> N48 [
    color = "#2e3436"
    fontcolor = "#2e3436"
    label = "LOVES\ncost = \'high\'\l"
  ]
----


.Final Graph
["dot", "Final-Graph-Remove-property-from-a-relationship.svg", "neoviz"]
----
  N48 [
    label = "{Node\[48\]|name = \'Juliet\'\l}"
  ]
  N49 [
    label = "{Node\[49\]|name = \'Romeo\'\l}"
  ]
  N49 -> N48 [
    color = "#2e3436"
    fontcolor = "#2e3436"
    label = "LOVES\n"
  ]
----

_Example request_

* *+DELETE+*  +http://localhost:7474/db/data/relationship/19/properties/cost+
* *+Accept:+* +application/json+

_Example response_

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

----


