Skip to content

Commit 9424f1c

Browse files
committed
added graphcool-playground
1 parent 687ae6a commit 9424f1c

File tree

5 files changed

+36
-2
lines changed

5 files changed

+36
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
1. start your local **redis** server
55
2. cd to this project directory
66
3. run `yarn && yarn start`
7-
4. open your brower with [this link](http://localhost:3000/graphiql)
7+
4. open your brower with [apollo-graphiql](http://localhost:3000/graphiql) or [graphcool-playground](http://localhost:3000/playground) (recommended)
88

99
## current problems
1010
1. `subscriptions-transport-ws` does not tackle the `context` correctly, [link](https://github.com/apollographql/subscriptions-transport-ws/issues/300)

app.js

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import express from 'express';
22
import bodyParser from 'body-parser';
33
import {graphiqlExpress, graphqlExpress} from 'apollo-server-express';
4+
import expressPlayground from 'graphql-playground-middleware-express';
45
import morgan from 'morgan';
56
import {client, pubsub} from './data/redis';
67
import schema from './data/schema';
@@ -22,5 +23,8 @@ app.get('/graphiql', graphiqlExpress({
2223
endpointURL: '/graphql',
2324
subscriptionsEndpoint: 'ws://localhost:3000/subscriptions'
2425
}));
26+
app.get('/playground', expressPlayground({
27+
endpoint: '/graphql',
28+
}));
2529

2630
export default app;

bin/www

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,6 @@ function onListening() {
8484
subscribe
8585
}, {
8686
server: server,
87-
path: '/subscriptions',
87+
path: '/graphql',
8888
});
8989
}

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
"express": "^4.16.2",
1111
"graphiql": "^0.11.11",
1212
"graphql": "^0.11.0",
13+
"graphql-playground-middleware-express": "^1.5.6",
1314
"graphql-redis-subscriptions": "^1.4.0",
1415
"graphql-relay": "^0.5.4",
1516
"graphql-subscriptions": "^0.5.6",

yarn.lock

+29
Original file line numberDiff line numberDiff line change
@@ -1183,6 +1183,16 @@ [email protected]:
11831183
minimatch "^3.0.4"
11841184
rimraf "^2.6.2"
11851185

1186+
1187+
version "1.1.7"
1188+
resolved "https://registry.yarnpkg.com/graphql-config/-/graphql-config-1.1.7.tgz#546c443d3ad877ceb8e13f40fbc8937af0d35dbe"
1189+
dependencies:
1190+
graphql "^0.12.3"
1191+
graphql-import "^0.4.0"
1192+
graphql-request "^1.4.0"
1193+
js-yaml "^3.10.0"
1194+
minimatch "^3.0.4"
1195+
11861196
graphql-extensions@^0.0.x:
11871197
version "0.0.7"
11881198
resolved "https://registry.yarnpkg.com/graphql-extensions/-/graphql-extensions-0.0.7.tgz#807e7c3493da45e8f8fd02c0da771a9b3f1f2d1a"
@@ -1199,6 +1209,13 @@ graphql-import@^0.1.7:
11991209
graphql "^0.12.3"
12001210
lodash "^4.17.4"
12011211

1212+
graphql-import@^0.4.0:
1213+
version "0.4.2"
1214+
resolved "https://registry.yarnpkg.com/graphql-import/-/graphql-import-0.4.2.tgz#e4925e838cf41d69d81d3879788ef8ee77532977"
1215+
dependencies:
1216+
graphql "^0.12.3"
1217+
lodash "^4.17.4"
1218+
12021219
graphql-language-service-interface@^1.0.16:
12031220
version "1.0.18"
12041221
resolved "https://registry.yarnpkg.com/graphql-language-service-interface/-/graphql-language-service-interface-1.0.18.tgz#c0fc1ef72c6f6f4bf9042bd7a8a8a66e0772caa8"
@@ -1238,6 +1255,18 @@ graphql-language-service-utils@^1.0.18:
12381255
graphql-config "1.1.4"
12391256
graphql-language-service-types "^1.0.18"
12401257

1258+
1259+
version "1.5.4"
1260+
resolved "https://registry.yarnpkg.com/graphql-playground-html/-/graphql-playground-html-1.5.4.tgz#82752ec4ee36c62d64ccebf7d3ca47477c213bb6"
1261+
dependencies:
1262+
graphql-config "1.1.7"
1263+
1264+
graphql-playground-middleware-express@^1.5.6:
1265+
version "1.5.6"
1266+
resolved "https://registry.yarnpkg.com/graphql-playground-middleware-express/-/graphql-playground-middleware-express-1.5.6.tgz#db3c4b0ab5fd999cd9ed0ee16460dca321878afd"
1267+
dependencies:
1268+
graphql-playground-html "1.5.4"
1269+
12411270
graphql-redis-subscriptions@^1.4.0:
12421271
version "1.4.0"
12431272
resolved "https://registry.yarnpkg.com/graphql-redis-subscriptions/-/graphql-redis-subscriptions-1.4.0.tgz#a9cc2e49db39c7d8f7845373aa3051141ae894f8"

0 commit comments

Comments
 (0)