Springboot with netflix DGS is unable to create /graphql endpoint in application startup #1496
-
|
hello, the following is the startup logs: as you can see, GraphiQLCOnfigurer is not invoking, I have added these in my dependencies: Any suggestion to make it work? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
@sshamsudRH This seems to be due to dependency version mismatch between Changing the graphql-dgs-platform-dependencies version to 6.0.1 and removing the version for graphql-dgs-pagination worked for me. |
Beta Was this translation helpful? Give feedback.
@sshamsudRH This seems to be due to dependency version mismatch between
<dependency> <groupId>com.netflix.graphql.dgs</groupId> <artifactId>graphql-dgs-platform-dependencies</artifactId> <version>4.9.16</version> <type>pom</type> <scope>import</scope> </dependency>and
<dependency> <groupId>com.netflix.graphql.dgs</groupId> <artifactId>graphql-dgs-pagination</artifactId> <version>6.0.5</version> </dependency>.Changing the graphql-dgs-platform-dependencies version to 6.0.1 and removing the version for graphql-dgs-pagination worked for me.