graphql-spring-boot
graphql-spring-boot copied to clipboard
graphiql-spring-boot-starter not work
i had add graphiql-spring-boot-starter as a dependency to a boot application.but it didn't work.
@guanzhenxing what version of spring boot are you using?
@guanzhenxing you can refer to issue #2
@shishuwu thx, i haved use graphql-java project instead
The correct dependencies are as follows:
<!-- GraphQL -->
<dependency>
<groupId>com.embedler.moon.graphql.boot.starter</groupId>
<artifactId>graphql-spring-boot-starter</artifactId>
<version>2.0</version>
</dependency>
<!-- GraphiQL -->
<dependency>
<groupId>com.embedler.moon.graphql.boot.starter</groupId>
<artifactId>graphiql-spring-boot-starter</artifactId>
<version>2.0.0</version>
</dependency>
In the readme the groupid is missing starter at the end.