[[rest-api-shouldhandleescapedstrings]]
=== ShouldHandleEscapedStrings ===

.Final Graph
["dot", "Final-Graph-shouldHandleEscapedStrings.svg", "neoviz"]
----
  N38 [
    label = "{Node\[38\]|name = \'string\\\\ and \\\"test\\\"\'\l}"
  ]
  N39 [
    label = "{Node\[39\]|name = \'Peter\'\l}"
  ]
  N39 -> N38 [
    color = "#2e3436"
    fontcolor = "#2e3436"
    label = "likes\n"
  ]
----

_Example request_

* *+POST+*  +http://localhost:7474/db/data/batch+
* *+Accept:+* +application/json+
* *+Content-Type:+* +application/json+
[source,javascript]
----
[ {
  "method" : "GET",
  "to" : "/node/38/properties/name"
} ]
----


_Example response_

* *+200:+* +OK+
* *+Content-Type:+* +application/json+
[source,javascript]
----
[ {
  "body" : "string\\ and \"test\"",
  "from" : "/node/38/properties/name"
} ]
----


