Skip to content

Instantly share code, notes, and snippets.

@eduardopc
Last active December 8, 2020 04:23
Show Gist options
  • Save eduardopc/a7f26063a5a1095a76aab46347cfcf73 to your computer and use it in GitHub Desktop.
Save eduardopc/a7f26063a5a1095a76aab46347cfcf73 to your computer and use it in GitHub Desktop.
import { GraphQLServer } from "graphql-yoga";
import { resolvers, typeDefs } from './animals';
const server = new GraphQLServer({ typeDefs, resolvers });
server.start(() => {
console.log(
`Server is running at http://localhost:4000`
);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment