[[rest-api-shouldreturn404whenfailingtofindasinglepath]]
=== ShouldReturn404WhenFailingToFindASinglePath ===

.Final Graph
["dot", "Final-Graph-shouldReturn404WhenFailingToFindASinglePath.svg", "neoviz"]
----
  N279 [
    label = "{Node\[279\]|name = \'f\'\l}"
  ]
  N279 -> N280 [
    color = "#2e3436"
    fontcolor = "#2e3436"
    label = "to\n"
  ]
  N280 [
    label = "{Node\[280\]|name = \'g\'\l}"
  ]
  N281 [
    label = "{Node\[281\]|name = \'d\'\l}"
  ]
  N281 -> N282 [
    color = "#2e3436"
    fontcolor = "#2e3436"
    label = "to\n"
  ]
  N281 -> N280 [
    color = "#2e3436"
    fontcolor = "#2e3436"
    label = "to\n"
  ]
  N282 [
    label = "{Node\[282\]|name = \'e\'\l}"
  ]
  N282 -> N280 [
    color = "#2e3436"
    fontcolor = "#2e3436"
    label = "to\n"
  ]
  N283 [
    label = "{Node\[283\]|name = \'b\'\l}"
  ]
  N283 -> N279 [
    color = "#2e3436"
    fontcolor = "#2e3436"
    label = "to\n"
  ]
  N284 [
    label = "{Node\[284\]|name = \'c\'\l}"
  ]
  N284 -> N283 [
    color = "#2e3436"
    fontcolor = "#2e3436"
    label = "to\n"
  ]
  N284 -> N279 [
    color = "#2e3436"
    fontcolor = "#2e3436"
    label = "to\n"
  ]
  N284 -> N280 [
    color = "#2e3436"
    fontcolor = "#2e3436"
    label = "to\n"
  ]
  N285 [
    label = "{Node\[285\]|name = \'a\'\l}"
  ]
  N285 -> N284 [
    color = "#2e3436"
    fontcolor = "#2e3436"
    label = "to\n"
  ]
  N285 -> N281 [
    color = "#2e3436"
    fontcolor = "#2e3436"
    label = "to\n"
  ]
----

_Example request_

* *+POST+*  +http://localhost:7474/db/data/node/285/path+
* *+Accept:+* +application/json+
* *+Content-Type:+* +application/json+
[source,javascript]
----
{"to":"http://localhost:7474/db/data/node/280", "max_depth":1, "relationships":{"type":"dummy", "direction":"in"}, "algorithm":"shortestPath"}
----


_Example response_

* *+404:+* +Not Found+
* *+Content-Type:+* +application/json+
[source,javascript]
----
{
  "exception" : "org.neo4j.graphdb.NotFoundException",
  "stacktrace" : [ "org.neo4j.server.rest.web.DatabaseActions.findSinglePath(DatabaseActions.java:1399)", "org.neo4j.server.rest.web.RestfulGraphDatabase.singlePath(RestfulGraphDatabase.java:1335)", "sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)", "sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)", "sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)", "java.lang.reflect.Method.invoke(Method.java:597)", "com.sun.jersey.spi.container.JavaMethodInvokerFactory$1.invoke(JavaMethodInvokerFactory.java:60)", "com.sun.jersey.server.impl.model.method.dispatch.AbstractResourceMethodDispatchProvider$ResponseOutInvoker._dispatch(AbstractResourceMethodDispatchProvider.java:205)", "com.sun.jersey.server.impl.model.method.dispatch.ResourceJavaMethodDispatcher.dispatch(ResourceJavaMethodDispatcher.java:75)", "com.sun.jersey.server.impl.uri.rules.HttpMethodRule.accept(HttpMethodRule.java:288)", "com.sun.jersey.server.impl.uri.rules.RightHandPathRule.accept(RightHandPathRule.java:147)", "com.sun.jersey.server.impl.uri.rules.ResourceClassRule.accept(ResourceClassRule.java:108)", "com.sun.jersey.server.impl.uri.rules.RightHandPathRule.accept(RightHandPathRule.java:147)", "com.sun.jersey.server.impl.uri.rules.RootResourceClassesRule.accept(RootResourceClassesRule.java:84)", "com.sun.jersey.server.impl.application.WebApplicationImpl._handleRequest(WebApplicationImpl.java:1469)", "com.sun.jersey.server.impl.application.WebApplicationImpl._handleRequest(WebApplicationImpl.java:1400)", "com.sun.jersey.server.impl.application.WebApplicationImpl.handleRequest(WebApplicationImpl.java:1349)", "com.sun.jersey.server.impl.application.WebApplicationImpl.handleRequest(WebApplicationImpl.java:1339)", "com.sun.jersey.spi.container.servlet.WebComponent.service(WebComponent.java:416)", "com.sun.jersey.spi.container.servlet.ServletContainer.service(ServletContainer.java:537)", "com.sun.jersey.spi.container.servlet.ServletContainer.service(ServletContainer.java:699)", "javax.servlet.http.HttpServlet.service(HttpServlet.java:820)", "org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:511)", "org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:390)", "org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:182)", "org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:765)", "org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollection.java:114)", "org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:152)", "org.mortbay.jetty.Server.handle(Server.java:326)", "org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:542)", "org.mortbay.jetty.HttpConnection$RequestHandler.content(HttpConnection.java:943)", "org.mortbay.jetty.HttpParser.parseNext(HttpParser.java:756)", "org.mortbay.jetty.HttpParser.parseAvailable(HttpParser.java:218)", "org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:404)", "org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java:410)", "org.mortbay.thread.QueuedThreadPool$PoolThread.run(QueuedThreadPool.java:582)" ]
}
----


