File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed
src/main/java/org/forum/server/jpa Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change 1
1
plugins {
2
- id " com.graphql_java_generator.graphql-gradle-plugin" version " 1.8.1 "
2
+ id " com.graphql_java_generator.graphql-gradle-plugin" version " 1.10 "
3
3
id ' java'
4
4
}
5
5
@@ -11,7 +11,7 @@ repositories {
11
11
dependencies {
12
12
// The graphql-java-runtime module agregates all dependencies for the generated code, including the plugin runtime
13
13
// CAUTION: this version should be exactly the same as the graphql-gradle-plugin's version
14
- implementation " com.graphql-java-generator:graphql-java-runtime:1.8.1 "
14
+ implementation " com.graphql-java-generator:graphql-java-runtime:1.10 "
15
15
// implementation "org.apache.logging.log4j:log4j-slf4j-impl:2.12.1"
16
16
implementation ' com.github.dozermapper:dozer-core:6.5.0'
17
17
implementation ' io.reactivex.rxjava2:rxjava:2.2.19'
Original file line number Diff line number Diff line change 9
9
import javax .persistence .Id ;
10
10
import javax .persistence .Transient ;
11
11
12
- import com .graphql_java_generator .annotation .GraphQLNonScalar ;
13
-
14
12
@ Entity (name = "Board" )
15
13
public class BoardEntity {
16
14
@@ -23,7 +21,6 @@ public class BoardEntity {
23
21
boolean publiclyAvailable ;
24
22
25
23
@ Transient
26
- @ GraphQLNonScalar (fieldName = "topics" , graphQLTypeName = "Topic" , javaClass = TopicEntity .class )
27
24
List <TopicEntity > topics ;
28
25
29
26
public UUID getId () {
You can’t perform that action at this time.
0 commit comments