Skip to content

Instantly share code, notes, and snippets.

@RyanCCollins
Created February 18, 2017 18:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RyanCCollins/05dd06a680faf5f26b554841e065705a to your computer and use it in GitHub Desktop.
Save RyanCCollins/05dd06a680faf5f26b554841e065705a to your computer and use it in GitHub Desktop.
GraphQL Query for Blog Posts
// From client/containers/Blog/posts.graphql.ts
import gql from 'graphql-tag';
export default gql`
query Posts {
posts {
id: _id
title
image
content
}
}
`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment