Skip to content

Instantly share code, notes, and snippets.

@clayallsopp
Created April 12, 2016 04:06
Show Gist options
  • Save clayallsopp/c0efe3de4561ab917e02485593a79286 to your computer and use it in GitHub Desktop.
Save clayallsopp/c0efe3de4561ab917e02485593a79286 to your computer and use it in GitHub Desktop.
const ResultType = new GraphQLObjectType({
name : 'Result',
fields : {
text : {
type : new GraphQLNonNull(GraphQLString)
},
id : {
type : new GraphQLNonNull(GraphQLID),
resolve: resolveWithInstrumentation((result) => {
return result.id;
})
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment