Skip to content

Commit

Permalink
Fixed Strawberry Shake Any Type (#5650)
Browse files Browse the repository at this point in the history
  • Loading branch information
PascalSenn committed Jan 2, 2023
1 parent 159077b commit 404dd9d
Showing 1 changed file with 4 additions and 0 deletions.
Expand Up @@ -73,6 +73,10 @@ public static class SchemaHelper
scalar.Name.Value,
scalar.Description?.Value));
}
else if (scalar.Name.Value == ScalarNames.Any)
{
builder.AddType(new AnyType());
}
}

builder.AddDocument(document);
Expand Down

0 comments on commit 404dd9d

Please sign in to comment.