Skip to content

Instantly share code, notes, and snippets.

@gc-codesnippets
Created August 25, 2017 15:41
Show Gist options
  • Select an option

  • Save gc-codesnippets/2e60c83f10e9f943ac0d597913bd767b to your computer and use it in GitHub Desktop.

Select an option

Save gc-codesnippets/2e60c83f10e9f943ac0d597913bd767b to your computer and use it in GitHub Desktop.
export default createFragmentContainer(ListPage, graphql`
fragment ListPage_viewer on Viewer {
...Post_viewer
allPosts(last: 100, orderBy: createdAt_DESC) @connection(key: "ListPage_allPosts", filters: []) {
edges {
node {
...Post_post
}
}
}
}
`)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment