Issues (2)

src/index.js (1 issue)

1
import graphQLServer from './server';
2
import { SERVER_PORT } from './constants';
3
4
graphQLServer.listen({ port: SERVER_PORT }, () => {
5
  console.log(`🚀 GraphQL is now running on port: ${SERVER_PORT}`);
0 ignored issues
show
console.log looks like debug code. Are you sure you do not want to remove it?
Loading history...
6
});
7