Skip to content

Commit

Permalink
Fixed duplicated error code. (#5623)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelstaib authored Dec 20, 2022
1 parent 436a0a3 commit bfc6988
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/HotChocolate/Core/src/Abstractions/ErrorCodes.cs
Original file line number Diff line number Diff line change
Expand Up @@ -210,9 +210,9 @@ public static class Schema
public const string MiddlewareOrderInvalid = "HC0050";

/// <summary>
/// Type system members are not supported as runtime types
/// Type system members are not supported as runtime types.
/// </summary>
public const string NoSchemaTypesAllowedAsRuntimeType = "HC0051";
public const string NoSchemaTypesAllowedAsRuntimeType = "HC0073";

/// <summary>
/// An object type implementing the node interface does not provide a node resolver.
Expand Down

0 comments on commit bfc6988

Please sign in to comment.