Skip to content

Instantly share code, notes, and snippets.

@helfer
Created April 1, 2016 16:49
Show Gist options
  • Save helfer/7dd129cae97e4daa3d325134027bea3b to your computer and use it in GitHub Desktop.
Save helfer/7dd129cae97e4daa3d325134027bea3b to your computer and use it in GitHub Desktop.
// resolve functions
{
Query: {
person: (obj, { id }) => loaders.user.byId(id)
}
}
// loaders
{
user: {
byId(id){
return rp(`https://some-backend.com/person/${id}`)
.then( res => JSON.parse(res) );
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment