Skip to content
This repository was archived by the owner on Dec 19, 2023. It is now read-only.

Commit 4ad61cb

Browse files
committed
Remove transactional property from readme
1 parent 8ee1479 commit 4ad61cb

File tree

1 file changed

+10
-14
lines changed

1 file changed

+10
-14
lines changed

README.md

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -80,19 +80,19 @@ repositories {
8080
}
8181
8282
dependencies {
83-
compile 'com.graphql-java-kickstart:graphql-spring-boot-starter:5.10.0'
83+
compile 'com.graphql-java-kickstart:graphql-spring-boot-starter:6.0.0'
8484
8585
// to embed Altair tool
86-
runtime 'com.graphql-java-kickstart:altair-spring-boot-starter:5.10.0'
86+
runtime 'com.graphql-java-kickstart:altair-spring-boot-starter:6.0.0'
8787
8888
// to embed GraphiQL tool
89-
runtime 'com.graphql-java-kickstart:graphiql-spring-boot-starter:5.10.0'
89+
runtime 'com.graphql-java-kickstart:graphiql-spring-boot-starter:6.0.0'
9090
9191
// to embed Voyager tool
92-
runtime 'com.graphql-java-kickstart:voyager-spring-boot-starter:5.10.0'
92+
runtime 'com.graphql-java-kickstart:voyager-spring-boot-starter:6.0.0'
9393
9494
// testing facilities
95-
testCompile 'com.graphql-java-kickstart:graphql-spring-boot-starter-test:5.10.0'
95+
testCompile 'com.graphql-java-kickstart:graphql-spring-boot-starter-test:6.0.0'
9696
}
9797
```
9898

@@ -101,38 +101,38 @@ Maven:
101101
<dependency>
102102
<groupId>com.graphql-java-kickstart</groupId>
103103
<artifactId>graphql-spring-boot-starter</artifactId>
104-
<version>5.10.0</version>
104+
<version>6.0.0</version>
105105
</dependency>
106106

107107
<!-- to embed Altair tool -->
108108
<dependency>
109109
<groupId>com.graphql-java-kickstart</groupId>
110110
<artifactId>altair-spring-boot-starter</artifactId>
111-
<version>5.10.0</version>
111+
<version>6.0.0</version>
112112
<scope>runtime</scope>
113113
</dependency>
114114

115115
<!-- to embed GraphiQL tool -->
116116
<dependency>
117117
<groupId>com.graphql-java-kickstart</groupId>
118118
<artifactId>graphiql-spring-boot-starter</artifactId>
119-
<version>5.10.0</version>
119+
<version>6.0.0</version>
120120
<scope>runtime</scope>
121121
</dependency>
122122

123123
<!-- to embed Voyager tool -->
124124
<dependency>
125125
<groupId>com.graphql-java-kickstart</groupId>
126126
<artifactId>voyager-spring-boot-starter</artifactId>
127-
<version>5.10.0</version>
127+
<version>6.0.0</version>
128128
<scope>runtime</scope>
129129
</dependency>
130130

131131
<!-- testing facilities -->
132132
<dependency>
133133
<groupId>com.graphql-java-kickstart</groupId>
134134
<artifactId>graphql-spring-boot-starter-test</artifactId>
135-
<version>5.10.0</version>
135+
<version>6.0.0</version>
136136
<scope>test</scope>
137137
</dependency>
138138

@@ -173,10 +173,6 @@ graphql:
173173
# if you want to @ExceptionHandler annotation for custom GraphQLErrors
174174
exception-handlers-enabled: true
175175
contextSetting: PER_REQUEST_WITH_INSTRUMENTATION
176-
query-invoker:
177-
# use a transactional query invoker; useful when working with JPA entities across multiple resolvers to
178-
# prevent LazyInitializationException; false by default
179-
transactional: true
180176
```
181177
182178
By default a global CORS filter is enabled for `/graphql/**` context.

0 commit comments

Comments
 (0)