Skip to content

Instantly share code, notes, and snippets.

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