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) {
398
398
}
399
399
});
400
400
typeRegistry .scalars ().values ().forEach (scalarTypeDefinition -> {
401
- if (ScalarInfo .isStandardScalar (scalarTypeDefinition .getName ())) {
401
+ if (ScalarInfo .isGraphqlSpecifiedScalar (scalarTypeDefinition .getName ())) {
402
402
return ;
403
403
}
404
404
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 {
55
55
56
56
@Override
57
57
boolean providesScalar (ScalarWiringEnvironment environment ) {
58
- if (ScalarInfo . isStandardScalar (environment. getScalarTypeDefinition(). getName())) {
58
+ if (ScalarInfo . isGraphqlSpecifiedScalar (environment. getScalarTypeDefinition(). getName())) {
59
59
return false
60
60
}
61
61
return true
You can’t perform that action at this time.
0 commit comments