Skip to content

Commit

Permalink
Fixed Strawberry Shake Any Type (#5650) (#5651)
Browse files Browse the repository at this point in the history
  • Loading branch information
PascalSenn authored Jan 2, 2023
1 parent af2c24d commit c9fe19f
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,10 @@ public static ISchema Load(
document.Definitions.OfType<ObjectTypeExtensionNode>(),
typeEntityPatterns);
}
else if (scalar.Name.Value == ScalarNames.Any)
{
builder.AddType(new AnyType());
}
}
else
{
Expand Down

0 comments on commit c9fe19f

Please sign in to comment.