From a644223cccd609ee093b7bc0828e8d97332666e0 Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Mon, 9 Sep 2024 17:37:10 -0400 Subject: [PATCH] Discconnect the `Mutation` until it has at least one method --- src/Tgstation.Server.Host/Core/Application.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Tgstation.Server.Host/Core/Application.cs b/src/Tgstation.Server.Host/Core/Application.cs index fa7a4ea27a..0730eabd06 100644 --- a/src/Tgstation.Server.Host/Core/Application.cs +++ b/src/Tgstation.Server.Host/Core/Application.cs @@ -294,8 +294,7 @@ namespace Tgstation.Server.Host.Core .AddAuthorization() .AddType() .BindRuntimeType() - .AddQueryType() - .AddMutationType(); + .AddQueryType(); void AddTypedContext() where TContext : DatabaseContext