[[rest-api-get-relationships-on-a-node-without-relationships]]
=== Get relationships on a node without relationships ===

.Final Graph
["dot", "Final-Graph-Get-relationships-on-a-node-without-relationships.svg", "neoviz"]
----
  N113 [
    label = "{Node\[113\]|}"
  ]
  N113 -> N114 [
    color = "#2e3436"
    fontcolor = "#2e3436"
    label = "LIKES\n"
  ]
  N113 -> N116 [
    color = "#4e9a06"
    fontcolor = "#4e9a06"
    label = "HATES\n"
  ]
  N114 [
    label = "{Node\[114\]|}"
  ]
  N115 [
    label = "{Node\[115\]|}"
  ]
  N115 -> N113 [
    color = "#2e3436"
    fontcolor = "#2e3436"
    label = "LIKES\n"
  ]
  N116 [
    label = "{Node\[116\]|}"
  ]
  N117 [
    label = "{Node\[117\]|}"
  ]
----

_Example request_

* *+GET+*  +http://localhost:7474/db/data/node/117/relationships/all+
* *+Accept:+* +application/json+

_Example response_

* *+200:+* +OK+
* *+Content-Type:+* +application/json+
[source,javascript]
----
[ ]
----


