From 19f2693bdf92c3ca230458f4f811800274b8057b Mon Sep 17 00:00:00 2001 From: Andreas Marek Date: Tue, 19 Jan 2021 18:19:10 +1100 Subject: [PATCH] schema is not needed if the top level types are named Query/Mutation/Subscription --- samples/webflux-websocket/src/main/resources/schema.graphqls | 5 ----- 1 file changed, 5 deletions(-) diff --git a/samples/webflux-websocket/src/main/resources/schema.graphqls b/samples/webflux-websocket/src/main/resources/schema.graphqls index 8716049a..b3ba26d9 100644 --- a/samples/webflux-websocket/src/main/resources/schema.graphqls +++ b/samples/webflux-websocket/src/main/resources/schema.graphqls @@ -1,8 +1,3 @@ -schema { - query: Query - subscription : Subscription -} - type Query { hello: String }