diff --git a/src/Tgstation.Server.Host/GraphQL/Types/SwarmNode.cs b/src/Tgstation.Server.Host/GraphQL/Types/SwarmNode.cs
index 2701e828b5..21979f2b36 100644
--- a/src/Tgstation.Server.Host/GraphQL/Types/SwarmNode.cs
+++ b/src/Tgstation.Server.Host/GraphQL/Types/SwarmNode.cs
@@ -17,13 +17,18 @@ namespace Tgstation.Server.Host.GraphQL.Types
///
/// Represents a node server in a swarm.
///
- [Node(IdField = nameof(Identifier))]
+ [Node]
public sealed class SwarmNode : IServerNode
{
///
- /// The swarm server ID.
+ /// The node ID.
///
[ID]
+ public string NodeId => Identifier;
+
+ ///
+ /// The swarm server ID.
+ ///
public string Identifier { get; }
///