From 36fc24ebfc1b9d047199eac5154ee90087367786 Mon Sep 17 00:00:00 2001 From: Manuel Date: Tue, 26 May 2020 18:39:13 +0100 Subject: [PATCH 1/2] Update old swagger link to graphql playground --- templates/server/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/server/src/index.ts b/templates/server/src/index.ts index 5b0b7ff..fa6b628 100644 --- a/templates/server/src/index.ts +++ b/templates/server/src/index.ts @@ -33,7 +33,7 @@ try { console.log(`GraphQL Server is now running on http://localhost:${PORT}`); //{^isWorkspace//} if (firstStartInDevMode) { - opn(`http://localhost:${PORT}/api/swagger`); + opn(`http://localhost:${PORT}/graphql`); } //{/isWorkspace//} } From ff9d323ed8b5ef7ce7fa7d97e6d887a977180958 Mon Sep 17 00:00:00 2001 From: Manuel Date: Fri, 5 Jun 2020 12:46:07 +0100 Subject: [PATCH 2/2] Update /graphql to /graphiql Co-authored-by: Victor Vlasenko --- templates/server/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/server/src/index.ts b/templates/server/src/index.ts index fa6b628..9606c18 100644 --- a/templates/server/src/index.ts +++ b/templates/server/src/index.ts @@ -33,7 +33,7 @@ try { console.log(`GraphQL Server is now running on http://localhost:${PORT}`); //{^isWorkspace//} if (firstStartInDevMode) { - opn(`http://localhost:${PORT}/graphql`); + opn(`http://localhost:${PORT}/graphiql`); } //{/isWorkspace//} }