Skip to content

Instantly share code, notes, and snippets.

@clayallsopp
Created April 10, 2016 03:21
Show Gist options
  • Save clayallsopp/33e1069c1700bd6c8db5e1250a54dc00 to your computer and use it in GitHub Desktop.
Save clayallsopp/33e1069c1700bd6c8db5e1250a54dc00 to your computer and use it in GitHub Desktop.
const UserType = new GraphQLObjectType({
name : 'User',
fields : {
username : { type : GraphQLString }
}
});
const MovieType = new GraphQLObjectType({
name : 'Movie',
fields : {
director : { type : GraphQLString }
}
});
const BookType = new GraphQLObjectType({
name : 'Book',
fields : {
author : { type : GraphQLString }
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment