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 b8c567a commit 9f87f31Copy full SHA for 9f87f31
src/main/java/graphql/servlet/GraphQLSchemaProvider.java
@@ -10,6 +10,7 @@ public interface GraphQLSchemaProvider {
10
static GraphQLSchema copyReadOnly(GraphQLSchema schema) {
11
return GraphQLSchema.newSchema()
12
.query(schema.getQueryType())
13
+ .codeRegistry(schema.getCodeRegistry())
14
.subscription(schema.getSubscriptionType())
15
.additionalTypes(schema.getAdditionalTypes())
16
.build();
0 commit comments