Skip to content

Instantly share code, notes, and snippets.

@clayallsopp
Created April 10, 2016 03:52
Show Gist options
  • Save clayallsopp/c7db24bf7df87bbdd6c219e24db355d9 to your computer and use it in GitHub Desktop.
Save clayallsopp/c7db24bf7df87bbdd6c219e24db355d9 to your computer and use it in GitHub Desktop.
const UserType = new GraphQLObjectType({
name : 'User',
interfaces: [SearchableType],
fields : {
username : {
type : GraphQLString
},
searchPreviewText : {
type : GraphQLString,
resolve(data) {
return `(user) ${data.username}`;
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment