Skip to content

Instantly share code, notes, and snippets.

@oxlb
Last active May 21, 2022 15:03
Show Gist options
  • Save oxlb/a08ed199a0be7204012faf248ed182ec to your computer and use it in GitHub Desktop.
Save oxlb/a08ed199a0be7204012faf248ed182ec to your computer and use it in GitHub Desktop.
const server = new ApolloServer({
typeDefs,
resolvers,
csrfPrevention: true,
});
// The `listen` method launches a web server.
server.listen().then(({ url }) => {
console.log(`🚀 Server ready at ${url}`);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment