File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
main/java/graphql/schema/idl
test/groovy/graphql/schema/idl Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -398,7 +398,7 @@ private Set<GraphQLType> buildAdditionalTypes(BuildContext buildCtx) {
398398 }
399399 });
400400 typeRegistry .scalars ().values ().forEach (scalarTypeDefinition -> {
401- if (ScalarInfo .isStandardScalar (scalarTypeDefinition .getName ())) {
401+ if (ScalarInfo .isGraphqlSpecifiedScalar (scalarTypeDefinition .getName ())) {
402402 return ;
403403 }
404404 if (buildCtx .hasInputType (scalarTypeDefinition ) == null && buildCtx .hasOutputType (scalarTypeDefinition ) == null ) {
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ class MockedWiringFactory implements WiringFactory {
5555
5656 @Override
5757 boolean providesScalar (ScalarWiringEnvironment environment ) {
58- if (ScalarInfo . isStandardScalar (environment. getScalarTypeDefinition(). getName())) {
58+ if (ScalarInfo . isGraphqlSpecifiedScalar (environment. getScalarTypeDefinition(). getName())) {
5959 return false
6060 }
6161 return true
You can’t perform that action at this time.
0 commit comments