Skip to content

Instantly share code, notes, and snippets.

@dbayarchyk
Last active September 18, 2019 14:00
Show Gist options
  • Save dbayarchyk/5cecaa61a0998a6635c5ccf2d128990c to your computer and use it in GitHub Desktop.
Save dbayarchyk/5cecaa61a0998a6635c5ccf2d128990c to your computer and use it in GitHub Desktop.
GraphQL fragment-based approach to building your components - schema.gql
type Query {
post(id: ID!): Post
}
type Post {
title
content
comments: [Comment!]
}
type Comment {
content: String!
author: User!
}
type User {
username: String!
avatar: String
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment