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 ac4f9c9 commit 1f78404Copy full SHA for 1f78404
src/GraphQL/Types/GraphType.cs
@@ -51,7 +51,8 @@ private string GetDefaultName()
51
}
52
53
54
- name = name.Replace('`', '_');
+ name = name.Replace('`', '_')
55
+ .Replace('@', '_'); // https://github.com/graphql-dotnet/graphql-dotnet/issues/3472
56
if (name.EndsWith(nameof(GraphType), StringComparison.InvariantCulture))
57
name = name.Substring(0, name.Length - nameof(GraphType).Length);
58
0 commit comments