Skip to content

Instantly share code, notes, and snippets.

@garethpbk
Created November 20, 2018 18:10
Show Gist options
  • Save garethpbk/e465ef7729ad978b846f586ddd84817f to your computer and use it in GitHub Desktop.
Save garethpbk/e465ef7729ad978b846f586ddd84817f to your computer and use it in GitHub Desktop.
const readUserFragment = client => {
const data = client.readFragment({
id,
fragment: GET_SINGLE_USER_FRAGMENT,
});
if (!data) {
return <h3>No data found in cache! Try visiting the home screen then returning here.</h3>
}
console.log(data);
return <h3>Success!</h3>
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment