Skip to content

Instantly share code, notes, and snippets.

@KyleAMathews
Created September 14, 2015 02:41
Show Gist options
  • Save KyleAMathews/4b596a4799185dae02d5 to your computer and use it in GitHub Desktop.
Save KyleAMathews/4b596a4799185dae02d5 to your computer and use it in GitHub Desktop.
viewer: () => Relay.QL`
fragment on User {
id
allPosts(first: $first) {
edges {
node {
post_id
title
body
created_at
}
}
}
}
`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment