Skip to content

Instantly share code, notes, and snippets.

@redbluenat
Created November 21, 2018 16:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save redbluenat/66a060b6b8a629c53c8fd6cfc40315de to your computer and use it in GitHub Desktop.
Save redbluenat/66a060b6b8a629c53c8fd6cfc40315de to your computer and use it in GitHub Desktop.
const { GraphQLServer } = require('graphql-yoga');
const typeDefs = `
type Query {
dogName: String!
}
`;
const resolvers = {
Query: {
dogName: () => `Tommy the chihuahua`
}
};
const server = new GraphQLServer({
typeDefs,
resolvers
});
server.start(() => console.log(`Server address: http://localhost:4000`));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment