arangosh> arango.GET_RAW("/hello/echo", { "accept" : "application/json" })
{
"code" : 404,
"error" : true,
"errorNum" : 404,
"errorMessage" : "404 Not Found",
"body" : "{\"error\":true,\"code\":404,\"errorNum\":404,\"errorMessage\":\"unknown path '/hello/echo'\"}",
"headers" : {
"connection" : "Keep-Alive",
"content-length" : "84",
"content-type" : "application/json; charset=utf-8",
"http/1.1" : "Not Found",
"server" : "ArangoDB",
"x-content-type-options" : "nosniff"
}
}
arangosh> db._query("FOR route IN _routing FILTER route.url == '/hello/echo' REMOVE route in _routing")
[object ArangoQueryCursor, count: 0, cached: false, hasMore: false]
arangosh> require("internal").reloadRouting()