Skip to content

Instantly share code, notes, and snippets.

@nicolaslopezj
Last active October 12, 2016 23:41
Show Gist options
  • Save nicolaslopezj/91a3eca3482f5e75d0686d80f4f87ea7 to your computer and use it in GitHub Desktop.
Save nicolaslopezj/91a3eca3482f5e75d0686d80f4f87ea7 to your computer and use it in GitHub Desktop.
Apollo React Post
/* Before */
export default graphql(query, {
options: ({ avatarSize }) => ({ variables: { avatarSize } })
})(Component)
/* After */
export default withGraphQL(query)(Component)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment