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 0c46306 commit e8f3708Copy full SHA for e8f3708
src/main/kotlin/graphql/kickstart/tools/SchemaObjects.kt
@@ -34,6 +34,7 @@ data class SchemaObjects(
34
* Makes a GraphQLSchema with query but without mutation and subscription.
35
*/
36
fun toReadOnlySchema(): GraphQLSchema = GraphQLSchema.newSchema()
37
+ .description(description)
38
.query(query)
39
.additionalTypes(dictionary)
40
.build()
0 commit comments