Skip to content

Instantly share code, notes, and snippets.

@alesanabriav
Last active June 8, 2017 17:10
Show Gist options
  • Save alesanabriav/a61f495e337e2fd8f4c28202f9658edf to your computer and use it in GitHub Desktop.
Save alesanabriav/a61f495e337e2fd8f4c28202f9658edf to your computer and use it in GitHub Desktop.
Graphql post type
let postType = new GraphQLObjectType({
name: "todo",
fields: () => ({
title: { type: GraphQLString },
author: { type: GraphQLString },
body: { type: GraphQLString }
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment