[[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"]
----
  N169 [
    label = "{Node\[169\]|}"
  ]
  N169 -> N170 [
    color = "#2e3436"
    fontcolor = "#2e3436"
    label = "LIKES\n"
  ]
  N169 -> N172 [
    color = "#4e9a06"
    fontcolor = "#4e9a06"
    label = "HATES\n"
  ]
  N170 [
    label = "{Node\[170\]|}"
  ]
  N171 [
    label = "{Node\[171\]|}"
  ]
  N171 -> N169 [
    color = "#2e3436"
    fontcolor = "#2e3436"
    label = "LIKES\n"
  ]
  N172 [
    label = "{Node\[172\]|}"
  ]
  N173 [
    label = "{Node\[173\]|}"
  ]
----

_Example request_

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

_Example response_

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


