diff --git a/src/Tgstation.Server.Host/GraphQL/Query.cs b/src/Tgstation.Server.Host/GraphQL/Query.cs
index 1b5e581ead..ddfa8e8477 100644
--- a/src/Tgstation.Server.Host/GraphQL/Query.cs
+++ b/src/Tgstation.Server.Host/GraphQL/Query.cs
@@ -8,9 +8,9 @@ namespace Tgstation.Server.Host.GraphQL
public sealed class Query
{
///
- /// Gets the .
+ /// Gets the .
///
- /// A new .
- public Types.Swarm Swarm() => new();
+ /// A new .
+ public Types.ServerSwarm Swarm() => new();
}
}
diff --git a/src/Tgstation.Server.Host/GraphQL/Types/Swarm.cs b/src/Tgstation.Server.Host/GraphQL/Types/ServerSwarm.cs
similarity index 98%
rename from src/Tgstation.Server.Host/GraphQL/Types/Swarm.cs
rename to src/Tgstation.Server.Host/GraphQL/Types/ServerSwarm.cs
index 896d5f538e..e43d9c5b2e 100644
--- a/src/Tgstation.Server.Host/GraphQL/Types/Swarm.cs
+++ b/src/Tgstation.Server.Host/GraphQL/Types/ServerSwarm.cs
@@ -16,7 +16,7 @@ namespace Tgstation.Server.Host.GraphQL.Types
///
/// Represents a tgstation-server swarm.
///
- public sealed class Swarm
+ public sealed class ServerSwarm
{
///
/// Gets the for the swarm.
diff --git a/src/Tgstation.Server.Host/GraphQL/Types/SwarmMetadata.cs b/src/Tgstation.Server.Host/GraphQL/Types/SwarmMetadata.cs
index f0ee0bbdf0..19fe192b23 100644
--- a/src/Tgstation.Server.Host/GraphQL/Types/SwarmMetadata.cs
+++ b/src/Tgstation.Server.Host/GraphQL/Types/SwarmMetadata.cs
@@ -7,7 +7,7 @@ using Tgstation.Server.Host.System;
namespace Tgstation.Server.Host.GraphQL.Types
{
///
- /// Represents information that is constant across all servers in a .
+ /// Represents information that is constant across all servers in a .
///
public sealed class SwarmMetadata
{