Skip to content

Instantly share code, notes, and snippets.

@helfer
Last active April 1, 2016 16:47
Show Gist options
  • Save helfer/d792560f2ef668a5bf0e1a2be62e6032 to your computer and use it in GitHub Desktop.
Save helfer/d792560f2ef668a5bf0e1a2be62e6032 to your computer and use it in GitHub Desktop.
import rp from 'request-promise';
{
Query: {
person(obj, { 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