@@ -41,13 +41,13 @@ repositories {
4141}
4242
4343dependencies {
44- compile 'com.graphql-java:graphql-spring-boot-starter:5.0.1 '
45-
44+ compile 'com.graphql-java:graphql-spring-boot-starter:5.0.2 '
45+
4646 // to embed GraphiQL tool
47- compile 'com.graphql-java:graphiql-spring-boot-starter:5.0.1 '
47+ compile 'com.graphql-java:graphiql-spring-boot-starter:5.0.2 '
4848
4949 // to embed Voyager tool
50- compile 'com.graphql-java:voyager-spring-boot-starter:5.0.1 '
50+ compile 'com.graphql-java:voyager-spring-boot-starter:5.0.2 '
5151}
5252```
5353
@@ -56,21 +56,21 @@ Maven:
5656<dependency >
5757 <groupId >com.graphql-java</groupId >
5858 <artifactId >graphql-spring-boot-starter</artifactId >
59- <version >5.0.1 </version >
59+ <version >5.0.2 </version >
6060</dependency >
6161
6262<!-- to embed GraphiQL tool -->
6363<dependency >
6464 <groupId >com.graphql-java</groupId >
6565 <artifactId >graphiql-spring-boot-starter</artifactId >
66- <version >5.0.1 </version >
66+ <version >5.0.2 </version >
6767</dependency >
6868
6969<!-- to embed Voyager tool -->
7070<dependency >
7171 <groupId >com.graphql-java</groupId >
7272 <artifactId >voyager-spring-boot-starter</artifactId >
73- <version >5.0.1 </version >
73+ <version >5.0.2 </version >
7474</dependency >
7575```
7676
@@ -126,7 +126,7 @@ By default GraphiQL is served from within the package. This can be configured to
126126by setting the property `graphiql.cdn.enabled` to `true`.
127127
128128You are able to set the GraphiQL props as well. The `graphiql.props.variables` group can contain any of the props
129- as defined at [GraphiQL Usage](https://github.com/graphql/graphiql#usage). Since setting (large) queries in the
129+ as defined at [GraphiQL Usage](https://github.com/graphql/graphiql#usage). Since setting (large) queries in the
130130properties like this isn't very readable, you can use the properties in the `graphiql.props.resources` group
131131to set the classpath resources that should be loaded.
132132
@@ -148,8 +148,8 @@ graphql:
148148 tools:
149149 schemaLocationPattern: "**/*.graphqls"
150150` ` `
151- By default GraphQL tools uses the location pattern `**/*.graphqls` to scan for GraphQL schemas on the classpath.
152- Use the `schemaLocationPattern` property to customize this pattern.
151+ By default GraphQL tools uses the location pattern `**/*.graphqls` to scan for GraphQL schemas on the classpath.
152+ Use the `schemaLocationPattern` property to customize this pattern.
153153
154154
155155# # GraphQL Spring Common [LATEST SUPPORTED VERSION: 3.1.1]
0 commit comments