diff --git a/website/src/blog/2024-08-30-hot-chocolate-14/2024-08-30-hot-chocolate-14.md b/website/src/blog/2024-08-30-hot-chocolate-14/2024-08-30-hot-chocolate-14.md index 6ab5dba7b75..575ee3ac09a 100644 --- a/website/src/blog/2024-08-30-hot-chocolate-14/2024-08-30-hot-chocolate-14.md +++ b/website/src/blog/2024-08-30-hot-chocolate-14/2024-08-30-hot-chocolate-14.md @@ -878,7 +878,7 @@ Another change we made with Hot Chocolate 14 is around introspection. When we de ```csharp builder .AddGraphQLServer() - .ModifyRequestOptions(o => o.EnableIntrospection = true); + .DisableIntrospection(false); ``` Also the schema file can be disabled like the following. @@ -886,7 +886,7 @@ Also the schema file can be disabled like the following. ```csharp builder .AddGraphQLServer() - .ModifyRequestOptions(o => o.EnableSchemaFile = false); + .ModifyRequestOptions(o => o.EnableSchemaFileSupport = false); ``` # Fusion