exists(ExistsRequest(request.path)).map { response =>
      response.stat.map { s =>
        StatResponse(request.path, stat = s)
      }.getOrElse(throw new NoNodeException(request.path))
    }