Skip to content

Instantly share code, notes, and snippets.

@zgababa
Created January 18, 2017 15:25
Show Gist options
  • Save zgababa/c0a3bf4dbc901f2f341239cdb767731f to your computer and use it in GitHub Desktop.
Save zgababa/c0a3bf4dbc901f2f341239cdb767731f to your computer and use it in GitHub Desktop.
'use strict';
const graphql = require('graphql');
const pokemonType = require('./pokemon/pokemon');
const schema = new graphql.GraphQLSchema({
query : new graphql.GraphQLObjectType({
name : 'Query',
fields : {
pokemon : pokemonType
}
})
});
module.exports = schema;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment