We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7efe6fc commit eb2a553Copy full SHA for eb2a553
website/src/blog/2024-08-30-hot-chocolate-14/2024-08-30-hot-chocolate-14.md
@@ -878,15 +878,15 @@ Another change we made with Hot Chocolate 14 is around introspection. When we de
878
```csharp
879
builder
880
.AddGraphQLServer()
881
- .ModifyRequestOptions(o => o.EnableIntrospection = true);
+ .DisableIntrospection(false);
882
```
883
884
Also the schema file can be disabled like the following.
885
886
887
888
889
- .ModifyRequestOptions(o => o.EnableSchemaFile = false);
+ .ModifyRequestOptions(o => o.EnableSchemaFileSupport = false);
890
891
892
# Fusion
0 commit comments