Skip to content

Commit

Permalink
Minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
dbritto-dev committed Dec 13, 2018
1 parent ba95e58 commit cd292ed
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@ const resolvers = require('./resolvers');
const schema = makeExecutableSchema({
typeDefs,
resolvers,
resolverValidationOptions: {
requireResolversForResolveType: false,
},
resolverValidationOptions: { requireResolversForResolveType: false },
});

const server = new ApolloServer({
Expand All @@ -25,4 +23,4 @@ const server = new ApolloServer({
}),
});

server.listen().then(({ url }) => `🚀 Server ready at ${url}`);
server.listen().then(({ url }) => console.log(`🚀 Server ready at ${url}`));

0 comments on commit cd292ed

Please sign in to comment.