Skip to content

Commit 219f11a

Browse files
Fix based on Franco G. comments
1 parent f2fd4d0 commit 219f11a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

lessons/day_01/java/src/main/resources/application.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ spring.h2.console.enabled=true
77
spring.datasource.name=graphQL
88

99
spring.graphql.graphiql.enabled=true
10+
spring.graphql.graphiql.path=/playground

setup/java.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ As a result, developers can get up and running with a Gradle project quickly wit
5757
### Run the app using Gradle
5858
1. Open a terminal
5959
2. go to the java exercise directory
60-
3. run `./gradle run `(linux) or `gradle.bat run`(windows) to start the GraphQL server.
60+
3. run `./gradlew bootRun `(linux) or `gradlew.bat bootRun`(windows) to start the GraphQL server.
6161

6262
### Using the IDE (IntelliJ IDEA)
6363

@@ -68,7 +68,7 @@ As a result, developers can get up and running with a Gradle project quickly wit
6868

6969
## Testing GraphQL queries
7070

71-
To display a GUI for editing and testing GraphQL queries and mutations against the server you can open your browser and type [http://localhost:8080/graphiql](http://localhost:8080/graphiql)
71+
To display a GUI for editing and testing GraphQL queries and mutations against the server you can open your browser and type [http://localhost:8080/playground](http://localhost:8080/playground)
7272

7373
## Inspect the Database
7474

0 commit comments

Comments
 (0)