[[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"]
----
  N101 [
    label = "{Node\[101\]|}"
  ]
  N101 -> N102 [
    color = "#2e3436"
    fontcolor = "#2e3436"
    label = "LIKES\n"
  ]
  N101 -> N104 [
    color = "#4e9a06"
    fontcolor = "#4e9a06"
    label = "HATES\n"
  ]
  N102 [
    label = "{Node\[102\]|}"
  ]
  N103 [
    label = "{Node\[103\]|}"
  ]
  N103 -> N101 [
    color = "#2e3436"
    fontcolor = "#2e3436"
    label = "LIKES\n"
  ]
  N104 [
    label = "{Node\[104\]|}"
  ]
  N105 [
    label = "{Node\[105\]|}"
  ]
----

_Example request_

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

_Example response_

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


