graphql-spring-boot icon indicating copy to clipboard operation
graphql-spring-boot copied to clipboard

graphiql-spring-boot-starter not work

Open guanzhenxing opened this issue 8 years ago • 4 comments

i had add graphiql-spring-boot-starter as a dependency to a boot application.but it didn't work.

guanzhenxing avatar Jun 08 '16 08:06 guanzhenxing

@guanzhenxing what version of spring boot are you using?

Zenith-One avatar Dec 14 '16 22:12 Zenith-One

@guanzhenxing you can refer to issue #2

shishuwu avatar Dec 27 '16 09:12 shishuwu

@shishuwu thx, i haved use graphql-java project instead

guanzhenxing avatar Dec 27 '16 09:12 guanzhenxing

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.

faisalferoz avatar Feb 26 '17 15:02 faisalferoz