diff --git a/services/graph/pkg/service/v0/graph.go b/services/graph/pkg/service/v0/graph.go index d5bd379b3..e43214aac 100644 --- a/services/graph/pkg/service/v0/graph.go +++ b/services/graph/pkg/service/v0/graph.go @@ -76,6 +76,7 @@ type Graph struct { // ServeHTTP implements the Service interface. func (g Graph) ServeHTTP(w http.ResponseWriter, r *http.Request) { + r.URL.RawPath = r.URL.EscapedPath() g.mux.ServeHTTP(w, r) }