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 c9fe19f commit 071f259Copy full SHA for 071f259
src/StrawberryShake/CodeGeneration/src/CodeGeneration/Utilities/SchemaHelper.cs
@@ -61,10 +61,6 @@ public static ISchema Load(
61
document.Definitions.OfType<ObjectTypeExtensionNode>(),
62
typeEntityPatterns);
63
}
64
- else if (scalar.Name.Value == ScalarNames.Any)
65
- {
66
- builder.AddType(new AnyType());
67
- }
68
69
else
70
{
@@ -76,6 +72,10 @@ public static ISchema Load(
76
72
scalar.Name.Value,
77
73
scalar.Description?.Value));
78
74
75
+ else if (scalar.Name.Value == ScalarNames.Any)
+ {
+ builder.AddType(new AnyType());
+ }
79
80
81
builder.AddDocument(document);
0 commit comments