diff --git a/docs/migration/migration8.md b/docs/migration/migration8.md index 7bb64bff..010944ab 100644 --- a/docs/migration/migration8.md +++ b/docs/migration/migration8.md @@ -10,3 +10,7 @@ None GraphQL.NET library. Please see the GraphQL.NET v8 migration document for more information. - The obsolete (v6 and prior) authorization validation rule has been removed. See the v7 migration document for more information on how to migrate to the v7/v8 authorization validation rule. + +## Other changes + +- GraphiQL has been bumped from 1.5.1 to 3.2.0 diff --git a/src/Ui.GraphiQL/Internal/GraphiQLPageModel.cs b/src/Ui.GraphiQL/Internal/GraphiQLPageModel.cs index 6ac0854f..02471628 100644 --- a/src/Ui.GraphiQL/Internal/GraphiQLPageModel.cs +++ b/src/Ui.GraphiQL/Internal/GraphiQLPageModel.cs @@ -49,7 +49,7 @@ public string Render() .Replace("@Model.SubscriptionsEndPoint", StringEncode(_options.SubscriptionsEndPoint)) .Replace("@Model.Headers", JsonSerialize(headers)) .Replace("@Model.HeaderEditorEnabled", _options.HeaderEditorEnabled ? "true" : "false") - .Replace("@Model.GraphiQLElement", _options.ExplorerExtensionEnabled ? "GraphiQLWithExtensions.GraphiQLWithExtensions" : "GraphiQL") + .Replace("@Model.GraphiQLElement", "GraphiQL") .Replace("@Model.RequestCredentials", requestCredentials); // Here, fully-qualified, absolute and relative URLs are supported for both the diff --git a/src/Ui.GraphiQL/Internal/graphiql.cshtml b/src/Ui.GraphiQL/Internal/graphiql.cshtml index a6c10b11..3881134a 100644 --- a/src/Ui.GraphiQL/Internal/graphiql.cshtml +++ b/src/Ui.GraphiQL/Internal/graphiql.cshtml @@ -1,5 +1,5 @@