diff --git a/internal/api/server.go b/internal/api/server.go index c2c798be2..5059e9a2a 100644 --- a/internal/api/server.go +++ b/internal/api/server.go @@ -207,7 +207,7 @@ func Initialize() (*Server, error) { r.HandleFunc(playgroundEndpoint, func(w http.ResponseWriter, r *http.Request) { setPageSecurityHeaders(w, r, pluginCache.ListPlugins()) endpoint := getProxyPrefix(r) + gqlEndpoint - gqlPlayground.Handler("GraphQL playground", endpoint)(w, r) + gqlPlayground.Handler("GraphQL playground", endpoint, gqlPlayground.WithGraphiqlEnablePluginExplorer(true))(w, r) }) r.Mount("/performer", server.getPerformerRoutes())