[[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"]
----
  N66 [
    label = "{Node\[66\]|name = \'Juliet\'\l}"
  ]
  N67 [
    label = "{Node\[67\]|name = \'Romeo\'\l}"
  ]
  N67 -> N66 [
    color = "#2e3436"
    fontcolor = "#2e3436"
    label = "LOVES\ncost = \'high\'\lsince = \'1day\'\l"
  ]
----

_Example request_

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

_Example response_

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


