File tree 3 files changed +2
-4
lines changed
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 */
1
2
import express from 'express' ;
2
3
import cors from 'cors' ;
3
4
import { ApolloServer } from 'apollo-server-express' ;
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ function renderExamplesLinks() {
28
28
} </a></b>`;
29
29
} ) ;
30
30
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>`
32
32
) ;
33
33
queries . push (
34
34
`<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';
4
4
mongoose . Promise = Promise ;
5
5
6
6
const opts = {
7
- autoReconnect : true ,
8
- reconnectTries : Number . MAX_VALUE ,
9
- reconnectInterval : 1000 ,
10
7
useNewUrlParser : true ,
11
8
useCreateIndex : true ,
12
9
useFindAndModify : false ,
You can’t perform that action at this time.
0 commit comments