[[rest-api-get-all-properties-on-a-relationship]]
=== Get all properties on a relationship ===

.Final Graph
["dot", "Final-Graph-get-all-properties-on-a-relationship.svg", "neoviz"]
----
  N59 [
    label = "{Node\[59\]|name = \'Juliet\'\l}"
  ]
  N60 [
    label = "{Node\[60\]|name = \'Romeo\'\l}"
  ]
  N60 -> N59 [
    color = "#2e3436"
    fontcolor = "#2e3436"
    label = "LOVES\ncost = \'high\'\lsince = \'1day\'\l"
  ]
----

_Example request_

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

_Example response_

* *+200:+* +OK+
* *+Content-Type:+* +application/json+
[source,javascript]
----
{
  "since" : "1day",
  "cost" : "high"
}
----


