From eb679717d9fbb2705b352725602d038fcbdee81d Mon Sep 17 00:00:00 2001 From: Samuel Vazquez Date: Wed, 26 Apr 2023 10:43:39 -0700 Subject: [PATCH] chore: update examples README to point to graphiql (#1762) graphiql is now the default IDE, playground needs to be manually enabled --- examples/server/ktor-server/README.md | 5 ++--- examples/server/spring-server/README.md | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/examples/server/ktor-server/README.md b/examples/server/ktor-server/README.md index 30cb67d807..3d7ac5f412 100644 --- a/examples/server/ktor-server/README.md +++ b/examples/server/ktor-server/README.md @@ -21,9 +21,8 @@ cd /path/to/graphql-kotlin/examples ``` Once the app has started you can: -- send GraphQL requests by opening the Playground endpoint at http://localhost:8080/playground -- send GraphQL requests directly to the endpoint at http://localhost:8080/graphql -- explore and interact with the example schema by opening the Playground IDE endpoint at http://localhost:8080/playground +- Explore and interact with the example schema by opening the Playground IDE endpoint at http://localhost:8080/graphiql +- Send GraphQL requests directly to the endpoint at http://localhost:8080/graphql #### Example query diff --git a/examples/server/spring-server/README.md b/examples/server/spring-server/README.md index bf6c40bb1e..1a9b072ef4 100644 --- a/examples/server/spring-server/README.md +++ b/examples/server/spring-server/README.md @@ -28,4 +28,4 @@ Then to start the server: ./gradlew :spring-server:bootRun ``` -Once the app has started you can explore the example schema by opening the GraphQL Playground endpoint at http://localhost:8080/playground. +Once the app has started you can explore the example schema by opening the GraphQL Playground endpoint at http://localhost:8080/graphiql.