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

Commit 523cd12

Browse files
authored
Merge pull request #576 from setchy/feature/graphql-playground
Adding details on how to add GraphQL Playground starter
2 parents 9dc6d2e + c2f10a1 commit 523cd12

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

README.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
# GraphQL and Graph*i*QL Spring Framework Boot Starters
22

33
[![Maven Central](https://img.shields.io/maven-central/v/com.graphql-java-kickstart/graphql-spring-boot-starter.svg)](https://maven-badges.herokuapp.com/maven-central/com.graphql-java-kickstart/graphql-spring-boot-starter)
4-
[![GitHub CI Workflow](https://github.com/graphql-java-kickstart/graphql-spring-boot/workflows/ci/badge.svg)](https://github.com/graphql-java-kickstart/graphql-spring-boot/actions?query=workflow%3ACI+branch%3Amaster)
4+
[![GitHub CI Workflow](https://github.com/graphql-java-kickstart/graphql-spring-boot/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/graphql-java-kickstart/graphql-spring-boot/actions/workflows/ci.yml?query=workflow%3ACI+branch%3Amaster)
55
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=graphql-java-kickstart_graphql-spring-boot&metric=alert_status)](https://sonarcloud.io/dashboard?id=graphql-java-kickstart_graphql-spring-boot)
6+
[![GitHub contributors](https://img.shields.io/github/contributors/graphql-java-kickstart/graphql-spring-boot)](https://github.com/graphql-java-kickstart/graphql-spring-boot/graphs/contributors)
7+
[![Discuss on GitHub](https://img.shields.io/badge/GitHub-discuss-orange)](https://github.com/graphql-java-kickstart/graphql-spring-boot/discussions)
8+
69

710
#### We are looking for contributors!
811

@@ -117,6 +120,9 @@ dependencies {
117120
// to embed GraphiQL tool
118121
runtimeOnly 'com.graphql-java-kickstart:graphiql-spring-boot-starter:11.0.0'
119122
123+
// to embed GraphQL Playground tool
124+
runtimeOnly 'com.graphql-java-kickstart:playground-spring-boot-starter:11.0.0'
125+
120126
// to embed Voyager tool
121127
runtimeOnly 'com.graphql-java-kickstart:voyager-spring-boot-starter:11.0.0'
122128
@@ -150,6 +156,14 @@ Maven:
150156
<scope>runtime</scope>
151157
</dependency>
152158

159+
<!-- to embed GraphQL Playground tool -->
160+
<dependency>
161+
<groupId>com.graphql-java-kickstart</groupId>
162+
<artifactId>playground-spring-boot-starter</artifactId>
163+
<version>11.0.0</version>
164+
<scope>runtime</scope>
165+
</dependency>
166+
153167
<!-- to embed Voyager tool -->
154168
<dependency>
155169
<groupId>com.graphql-java-kickstart</groupId>

0 commit comments

Comments
 (0)