File tree Expand file tree Collapse file tree 3 files changed +2
-4
lines changed Expand file tree Collapse file tree 3 files changed +2
-4
lines changed Original file line number Diff line number Diff line change 1+ /* eslint-disable @typescript-eslint/no-var-requires */
12import express from 'express' ;
23import cors from 'cors' ;
34import { ApolloServer } from 'apollo-server-express' ;
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ function renderExamplesLinks() {
2828 } </a></b>`;
2929 } ) ;
3030 queries . push (
31- `<b><a href="${ meta . uri } -playground " target="_blank">GraphQL Playground</a> (improved GraphiQL IDE)</b>`
31+ `<b><a href="${ meta . uri } " target="_blank">GraphQL Playground</a> (improved GraphiQL IDE)</b>`
3232 ) ;
3333 queries . push (
3434 `<b><a href="${ meta . uri } -altair" target="_blank">Altair</a> (improved GraphiQL IDE)</b>`
Original file line number Diff line number Diff line change @@ -4,9 +4,6 @@ import { MONGODB_URI } from './config';
44mongoose . Promise = Promise ;
55
66const opts = {
7- autoReconnect : true ,
8- reconnectTries : Number . MAX_VALUE ,
9- reconnectInterval : 1000 ,
107 useNewUrlParser : true ,
118 useCreateIndex : true ,
129 useFindAndModify : false ,
You can’t perform that action at this time.
0 commit comments